12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- // Polyfills
- if ( Number.EPSILON === undefined ) {
- Number.EPSILON = Math.pow( 2, - 52 );
- }
- //
- if ( Math.sign === undefined ) {
- // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/sign
- Math.sign = function ( x ) {
- return ( x < 0 ) ? - 1 : ( x > 0 ) ? 1 : + x;
- };
- }
- if ( Function.prototype.name === undefined ) {
- // Missing in IE9-11.
- // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function/name
- Object.defineProperty( Function.prototype, 'name', {
- get: function () {
- return this.toString().match( /^\s*function\s*([^\(\s]*)/ )[ 1 ];
- }
- } );
- }
- if ( Object.assign === undefined ) {
- // Missing in IE.
- // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/assign
- ( function () {
- Object.assign = function ( target ) {
- 'use strict';
- if ( target === undefined || target === null ) {
- throw new TypeError( 'Cannot convert undefined or null to object' );
- }
- var output = Object( target );
- for ( var index = 1; index < arguments.length; index ++ ) {
- var source = arguments[ index ];
- if ( source !== undefined && source !== null ) {
- for ( var nextKey in source ) {
- if ( Object.prototype.hasOwnProperty.call( source, nextKey ) ) {
- output[ nextKey ] = source[ nextKey ];
- }
- }
- }
- }
- return output;
- };
- } )();
- }
|