polyfills.js 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. // Polyfills
  2. if ( Number.EPSILON === undefined ) {
  3. Number.EPSILON = Math.pow( 2, - 52 );
  4. }
  5. //
  6. if ( Math.sign === undefined ) {
  7. // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/sign
  8. Math.sign = function ( x ) {
  9. return ( x < 0 ) ? - 1 : ( x > 0 ) ? 1 : + x;
  10. };
  11. }
  12. if ( Function.prototype.name === undefined ) {
  13. // Missing in IE9-11.
  14. // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function/name
  15. Object.defineProperty( Function.prototype, 'name', {
  16. get: function () {
  17. return this.toString().match( /^\s*function\s*([^\(\s]*)/ )[ 1 ];
  18. }
  19. } );
  20. }
  21. if ( Object.assign === undefined ) {
  22. // Missing in IE.
  23. // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/assign
  24. ( function () {
  25. Object.assign = function ( target ) {
  26. 'use strict';
  27. if ( target === undefined || target === null ) {
  28. throw new TypeError( 'Cannot convert undefined or null to object' );
  29. }
  30. var output = Object( target );
  31. for ( var index = 1; index < arguments.length; index ++ ) {
  32. var source = arguments[ index ];
  33. if ( source !== undefined && source !== null ) {
  34. for ( var nextKey in source ) {
  35. if ( Object.prototype.hasOwnProperty.call( source, nextKey ) ) {
  36. output[ nextKey ] = source[ nextKey ];
  37. }
  38. }
  39. }
  40. }
  41. return output;
  42. };
  43. } )();
  44. }