mirror of
https://github.com/home-assistant/frontend.git
synced 2025-06-22 01:56:33 +00:00
10 lines
253 B
JavaScript
10 lines
253 B
JavaScript
import 'mdn-polyfills/Array.prototype.includes';
|
|
import 'unfetch/polyfill';
|
|
import objAssign from 'es6-object-assign';
|
|
|
|
objAssign.polyfill();
|
|
|
|
if (Object.values === undefined) {
|
|
Object.values = target => Object.keys(target).map(key => target[key]);
|
|
}
|