15 lines
415 B
JavaScript
15 lines
415 B
JavaScript
'use strict';
|
|
|
|
// Object.values/Object.entries are stage 4, in ES2017
|
|
require('object.values/shim')();
|
|
require('object.entries/shim')();
|
|
|
|
// String#padStart/String#padEnd are stage 4, in ES2017
|
|
require('string.prototype.padstart/shim')();
|
|
require('string.prototype.padend/shim')();
|
|
|
|
// Object.getOwnPropertyDescriptors is stage 4, in ES2017
|
|
require('object.getownpropertydescriptors/shim')();
|
|
|
|
require('./es2018');
|