es5-shim.js 50 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434
  1. /*!
  2. * https://github.com/es-shims/es5-shim
  3. * @license es5-shim Copyright 2009-2014 by contributors, MIT License
  4. * see https://github.com/es-shims/es5-shim/blob/master/LICENSE
  5. */
  6. // vim: ts=4 sts=4 sw=4 expandtab
  7. //Add semicolon to prevent IIFE from being passed as argument to concated code.
  8. ;
  9. // UMD (Universal Module Definition)
  10. // see https://github.com/umdjs/umd/blob/master/returnExports.js
  11. (function (root, factory) {
  12. if (typeof define === 'function' && define.amd) {
  13. // AMD. Register as an anonymous module.
  14. define(factory);
  15. } else if (typeof exports === 'object') {
  16. // Node. Does not work with strict CommonJS, but
  17. // only CommonJS-like enviroments that support module.exports,
  18. // like Node.
  19. module.exports = factory();
  20. } else {
  21. // Browser globals (root is window)
  22. root.returnExports = factory();
  23. }
  24. }(this, function () {
  25. /**
  26. * Brings an environment as close to ECMAScript 5 compliance
  27. * as is possible with the facilities of erstwhile engines.
  28. *
  29. * Annotated ES5: http://es5.github.com/ (specific links below)
  30. * ES5 Spec: http://www.ecma-international.org/publications/files/ECMA-ST/Ecma-262.pdf
  31. * Required reading: http://javascriptweblog.wordpress.com/2011/12/05/extending-javascript-natives/
  32. */
  33. // Shortcut to an often accessed properties, in order to avoid multiple
  34. // dereference that costs universally.
  35. var call = Function.prototype.call;
  36. var prototypeOfArray = Array.prototype;
  37. var prototypeOfObject = Object.prototype;
  38. var _Array_slice_ = prototypeOfArray.slice;
  39. var array_splice = Array.prototype.splice;
  40. var array_push = Array.prototype.push;
  41. var array_unshift = Array.prototype.unshift;
  42. var isFunction = function (val) {
  43. return prototypeOfObject.toString.call(val) === '[object Function]';
  44. };
  45. var isRegex = function (val) {
  46. return prototypeOfObject.toString.call(val) === '[object RegExp]';
  47. };
  48. //
  49. // Function
  50. // ========
  51. //
  52. // ES-5 15.3.4.5
  53. // http://es5.github.com/#x15.3.4.5
  54. function Empty() {}
  55. if (!Function.prototype.bind) {
  56. Function.prototype.bind = function bind(that) { // .length is 1
  57. // 1. Let Target be the this value.
  58. var target = this;
  59. // 2. If IsCallable(Target) is false, throw a TypeError exception.
  60. if (!isFunction(target)) {
  61. throw new TypeError("Function.prototype.bind called on incompatible " + target);
  62. }
  63. // 3. Let A be a new (possibly empty) internal list of all of the
  64. // argument values provided after thisArg (arg1, arg2 etc), in order.
  65. // XXX slicedArgs will stand in for "A" if used
  66. var args = _Array_slice_.call(arguments, 1); // for normal call
  67. // 4. Let F be a new native ECMAScript object.
  68. // 11. Set the [[Prototype]] internal property of F to the standard
  69. // built-in Function prototype object as specified in 15.3.3.1.
  70. // 12. Set the [[Call]] internal property of F as described in
  71. // 15.3.4.5.1.
  72. // 13. Set the [[Construct]] internal property of F as described in
  73. // 15.3.4.5.2.
  74. // 14. Set the [[HasInstance]] internal property of F as described in
  75. // 15.3.4.5.3.
  76. var binder = function () {
  77. if (this instanceof bound) {
  78. // 15.3.4.5.2 [[Construct]]
  79. // When the [[Construct]] internal method of a function object,
  80. // F that was created using the bind function is called with a
  81. // list of arguments ExtraArgs, the following steps are taken:
  82. // 1. Let target be the value of F's [[TargetFunction]]
  83. // internal property.
  84. // 2. If target has no [[Construct]] internal method, a
  85. // TypeError exception is thrown.
  86. // 3. Let boundArgs be the value of F's [[BoundArgs]] internal
  87. // property.
  88. // 4. Let args be a new list containing the same values as the
  89. // list boundArgs in the same order followed by the same
  90. // values as the list ExtraArgs in the same order.
  91. // 5. Return the result of calling the [[Construct]] internal
  92. // method of target providing args as the arguments.
  93. var result = target.apply(
  94. this,
  95. args.concat(_Array_slice_.call(arguments))
  96. );
  97. if (Object(result) === result) {
  98. return result;
  99. }
  100. return this;
  101. } else {
  102. // 15.3.4.5.1 [[Call]]
  103. // When the [[Call]] internal method of a function object, F,
  104. // which was created using the bind function is called with a
  105. // this value and a list of arguments ExtraArgs, the following
  106. // steps are taken:
  107. // 1. Let boundArgs be the value of F's [[BoundArgs]] internal
  108. // property.
  109. // 2. Let boundThis be the value of F's [[BoundThis]] internal
  110. // property.
  111. // 3. Let target be the value of F's [[TargetFunction]] internal
  112. // property.
  113. // 4. Let args be a new list containing the same values as the
  114. // list boundArgs in the same order followed by the same
  115. // values as the list ExtraArgs in the same order.
  116. // 5. Return the result of calling the [[Call]] internal method
  117. // of target providing boundThis as the this value and
  118. // providing args as the arguments.
  119. // equiv: target.call(this, ...boundArgs, ...args)
  120. return target.apply(
  121. that,
  122. args.concat(_Array_slice_.call(arguments))
  123. );
  124. }
  125. };
  126. // 15. If the [[Class]] internal property of Target is "Function", then
  127. // a. Let L be the length property of Target minus the length of A.
  128. // b. Set the length own property of F to either 0 or L, whichever is
  129. // larger.
  130. // 16. Else set the length own property of F to 0.
  131. var boundLength = Math.max(0, target.length - args.length);
  132. // 17. Set the attributes of the length own property of F to the values
  133. // specified in 15.3.5.1.
  134. var boundArgs = [];
  135. for (var i = 0; i < boundLength; i++) {
  136. boundArgs.push("$" + i);
  137. }
  138. // XXX Build a dynamic function with desired amount of arguments is the only
  139. // way to set the length property of a function.
  140. // In environments where Content Security Policies enabled (Chrome extensions,
  141. // for ex.) all use of eval or Function costructor throws an exception.
  142. // However in all of these environments Function.prototype.bind exists
  143. // and so this code will never be executed.
  144. var bound = Function("binder", "return function(" + boundArgs.join(",") + "){return binder.apply(this,arguments)}")(binder);
  145. if (target.prototype) {
  146. Empty.prototype = target.prototype;
  147. bound.prototype = new Empty();
  148. // Clean up dangling references.
  149. Empty.prototype = null;
  150. }
  151. // TODO
  152. // 18. Set the [[Extensible]] internal property of F to true.
  153. // TODO
  154. // 19. Let thrower be the [[ThrowTypeError]] function Object (13.2.3).
  155. // 20. Call the [[DefineOwnProperty]] internal method of F with
  156. // arguments "caller", PropertyDescriptor {[[Get]]: thrower, [[Set]]:
  157. // thrower, [[Enumerable]]: false, [[Configurable]]: false}, and
  158. // false.
  159. // 21. Call the [[DefineOwnProperty]] internal method of F with
  160. // arguments "arguments", PropertyDescriptor {[[Get]]: thrower,
  161. // [[Set]]: thrower, [[Enumerable]]: false, [[Configurable]]: false},
  162. // and false.
  163. // TODO
  164. // NOTE Function objects created using Function.prototype.bind do not
  165. // have a prototype property or the [[Code]], [[FormalParameters]], and
  166. // [[Scope]] internal properties.
  167. // XXX can't delete prototype in pure-js.
  168. // 22. Return F.
  169. return bound;
  170. };
  171. }
  172. // _Please note: Shortcuts are defined after `Function.prototype.bind` as we
  173. // us it in defining shortcuts.
  174. var owns = call.bind(prototypeOfObject.hasOwnProperty);
  175. // Having a toString local variable name breaks in Opera so use _toString.
  176. var _toString = call.bind(prototypeOfObject.toString);
  177. // If JS engine supports accessors creating shortcuts.
  178. var defineGetter;
  179. var defineSetter;
  180. var lookupGetter;
  181. var lookupSetter;
  182. var supportsAccessors;
  183. if ((supportsAccessors = owns(prototypeOfObject, "__defineGetter__"))) {
  184. defineGetter = call.bind(prototypeOfObject.__defineGetter__);
  185. defineSetter = call.bind(prototypeOfObject.__defineSetter__);
  186. lookupGetter = call.bind(prototypeOfObject.__lookupGetter__);
  187. lookupSetter = call.bind(prototypeOfObject.__lookupSetter__);
  188. }
  189. //
  190. // Array
  191. // =====
  192. //
  193. // ES5 15.4.4.12
  194. // http://es5.github.com/#x15.4.4.12
  195. // Default value for second param
  196. // [bugfix, ielt9, old browsers]
  197. // IE < 9 bug: [1,2].splice(0).join("") === "" but should be "12"
  198. if ([1, 2].splice(0).length !== 2) {
  199. if (function () { // test IE < 9 to splice bug - see issue #138
  200. function makeArray(l) {
  201. var a = [];
  202. while (l--) {
  203. a.unshift(l);
  204. }
  205. return a;
  206. }
  207. var array = [];
  208. var lengthBefore;
  209. array.splice.bind(array, 0, 0).apply(null, makeArray(20));
  210. array.splice.bind(array, 0, 0).apply(null, makeArray(26));
  211. lengthBefore = array.length; //20
  212. array.splice(5, 0, "XXX"); // add one element
  213. if (lengthBefore + 1 === array.length) {
  214. return true;// has right splice implementation without bugs
  215. }
  216. // else {
  217. // IE8 bug
  218. // }
  219. }()) { // IE 6/7
  220. Array.prototype.splice = function(start, deleteCount) {
  221. if (!arguments.length) {
  222. return [];
  223. } else {
  224. return array_splice.apply(this, [
  225. start === void 0 ? 0 : start,
  226. deleteCount === void 0 ? (this.length - start) : deleteCount
  227. ].concat(_Array_slice_.call(arguments, 2)));
  228. }
  229. };
  230. } else { // IE8
  231. Array.prototype.splice = function(start, deleteCount) {
  232. var result;
  233. var args = _Array_slice_.call(arguments, 2);
  234. var addElementsCount = args.length;
  235. if (!arguments.length) {
  236. return [];
  237. }
  238. if (start === void 0) { // default
  239. start = 0;
  240. }
  241. if (deleteCount === void 0) { // default
  242. deleteCount = this.length - start;
  243. }
  244. if (addElementsCount > 0) {
  245. if (deleteCount <= 0) {
  246. if (start === this.length) { // tiny optimisation #1
  247. array_push.apply(this, args);
  248. return [];
  249. }
  250. if (start === 0) { // tiny optimisation #2
  251. array_unshift.apply(this, args);
  252. return [];
  253. }
  254. }
  255. // Array.prototype.splice implementation
  256. result = _Array_slice_.call(this, start, start + deleteCount);// delete part
  257. args.push.apply(args, _Array_slice_.call(this, start + deleteCount, this.length));// right part
  258. args.unshift.apply(args, _Array_slice_.call(this, 0, start));// left part
  259. // delete all items from this array and replace it to 'left part' + _Array_slice_.call(arguments, 2) + 'right part'
  260. args.unshift(0, this.length);
  261. array_splice.apply(this, args);
  262. return result;
  263. }
  264. return array_splice.call(this, start, deleteCount);
  265. };
  266. }
  267. }
  268. // ES5 15.4.4.12
  269. // http://es5.github.com/#x15.4.4.13
  270. // Return len+argCount.
  271. // [bugfix, ielt8]
  272. // IE < 8 bug: [].unshift(0) === undefined but should be "1"
  273. if ([].unshift(0) !== 1) {
  274. Array.prototype.unshift = function() {
  275. array_unshift.apply(this, arguments);
  276. return this.length;
  277. };
  278. }
  279. // ES5 15.4.3.2
  280. // http://es5.github.com/#x15.4.3.2
  281. // https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Array/isArray
  282. if (!Array.isArray) {
  283. Array.isArray = function isArray(obj) {
  284. return _toString(obj) === "[object Array]";
  285. };
  286. }
  287. // The IsCallable() check in the Array functions
  288. // has been replaced with a strict check on the
  289. // internal class of the object to trap cases where
  290. // the provided function was actually a regular
  291. // expression literal, which in V8 and
  292. // JavaScriptCore is a typeof "function". Only in
  293. // V8 are regular expression literals permitted as
  294. // reduce parameters, so it is desirable in the
  295. // general case for the shim to match the more
  296. // strict and common behavior of rejecting regular
  297. // expressions.
  298. // ES5 15.4.4.18
  299. // http://es5.github.com/#x15.4.4.18
  300. // https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/array/forEach
  301. // Check failure of by-index access of string characters (IE < 9)
  302. // and failure of `0 in boxedString` (Rhino)
  303. var boxedString = Object("a");
  304. var splitString = boxedString[0] !== "a" || !(0 in boxedString);
  305. var properlyBoxesContext = function properlyBoxed(method) {
  306. // Check node 0.6.21 bug where third parameter is not boxed
  307. var properlyBoxes = true;
  308. if (method) {
  309. method.call('foo', function (_, __, context) {
  310. if (typeof context !== 'object') { properlyBoxes = false; }
  311. });
  312. }
  313. return !!method && properlyBoxes;
  314. };
  315. if (!Array.prototype.forEach || !properlyBoxesContext(Array.prototype.forEach)) {
  316. Array.prototype.forEach = function forEach(fun /*, thisp*/) {
  317. var object = toObject(this),
  318. self = splitString && _toString(this) === "[object String]" ?
  319. this.split("") :
  320. object,
  321. thisp = arguments[1],
  322. i = -1,
  323. length = self.length >>> 0;
  324. // If no callback function or if callback is not a callable function
  325. if (!isFunction(fun)) {
  326. throw new TypeError(); // TODO message
  327. }
  328. while (++i < length) {
  329. if (i in self) {
  330. // Invoke the callback function with call, passing arguments:
  331. // context, property value, property key, thisArg object
  332. // context
  333. fun.call(thisp, self[i], i, object);
  334. }
  335. }
  336. };
  337. }
  338. // ES5 15.4.4.19
  339. // http://es5.github.com/#x15.4.4.19
  340. // https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Objects/Array/map
  341. if (!Array.prototype.map || !properlyBoxesContext(Array.prototype.map)) {
  342. Array.prototype.map = function map(fun /*, thisp*/) {
  343. var object = toObject(this),
  344. self = splitString && _toString(this) === "[object String]" ?
  345. this.split("") :
  346. object,
  347. length = self.length >>> 0,
  348. result = Array(length),
  349. thisp = arguments[1];
  350. // If no callback function or if callback is not a callable function
  351. if (!isFunction(fun)) {
  352. throw new TypeError(fun + " is not a function");
  353. }
  354. for (var i = 0; i < length; i++) {
  355. if (i in self)
  356. result[i] = fun.call(thisp, self[i], i, object);
  357. }
  358. return result;
  359. };
  360. }
  361. // ES5 15.4.4.20
  362. // http://es5.github.com/#x15.4.4.20
  363. // https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Objects/Array/filter
  364. if (!Array.prototype.filter || !properlyBoxesContext(Array.prototype.filter)) {
  365. Array.prototype.filter = function filter(fun /*, thisp */) {
  366. var object = toObject(this),
  367. self = splitString && _toString(this) === "[object String]" ?
  368. this.split("") :
  369. object,
  370. length = self.length >>> 0,
  371. result = [],
  372. value,
  373. thisp = arguments[1];
  374. // If no callback function or if callback is not a callable function
  375. if (!isFunction(fun)) {
  376. throw new TypeError(fun + " is not a function");
  377. }
  378. for (var i = 0; i < length; i++) {
  379. if (i in self) {
  380. value = self[i];
  381. if (fun.call(thisp, value, i, object)) {
  382. result.push(value);
  383. }
  384. }
  385. }
  386. return result;
  387. };
  388. }
  389. // ES5 15.4.4.16
  390. // http://es5.github.com/#x15.4.4.16
  391. // https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Array/every
  392. if (!Array.prototype.every || !properlyBoxesContext(Array.prototype.every)) {
  393. Array.prototype.every = function every(fun /*, thisp */) {
  394. var object = toObject(this),
  395. self = splitString && _toString(this) === "[object String]" ?
  396. this.split("") :
  397. object,
  398. length = self.length >>> 0,
  399. thisp = arguments[1];
  400. // If no callback function or if callback is not a callable function
  401. if (!isFunction(fun)) {
  402. throw new TypeError(fun + " is not a function");
  403. }
  404. for (var i = 0; i < length; i++) {
  405. if (i in self && !fun.call(thisp, self[i], i, object)) {
  406. return false;
  407. }
  408. }
  409. return true;
  410. };
  411. }
  412. // ES5 15.4.4.17
  413. // http://es5.github.com/#x15.4.4.17
  414. // https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Array/some
  415. if (!Array.prototype.some || !properlyBoxesContext(Array.prototype.some)) {
  416. Array.prototype.some = function some(fun /*, thisp */) {
  417. var object = toObject(this),
  418. self = splitString && _toString(this) === "[object String]" ?
  419. this.split("") :
  420. object,
  421. length = self.length >>> 0,
  422. thisp = arguments[1];
  423. // If no callback function or if callback is not a callable function
  424. if (!isFunction(fun)) {
  425. throw new TypeError(fun + " is not a function");
  426. }
  427. for (var i = 0; i < length; i++) {
  428. if (i in self && fun.call(thisp, self[i], i, object)) {
  429. return true;
  430. }
  431. }
  432. return false;
  433. };
  434. }
  435. // ES5 15.4.4.21
  436. // http://es5.github.com/#x15.4.4.21
  437. // https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Objects/Array/reduce
  438. var reduceCoercesToObject = false;
  439. if (Array.prototype.reduce) {
  440. reduceCoercesToObject = typeof Array.prototype.reduce.call('a', function (_, __, ___, list) { return list; }) === 'object';
  441. }
  442. if (!Array.prototype.reduce || !reduceCoercesToObject) {
  443. Array.prototype.reduce = function reduce(fun /*, initial*/) {
  444. var object = toObject(this),
  445. self = splitString && _toString(this) === "[object String]" ?
  446. this.split("") :
  447. object,
  448. length = self.length >>> 0;
  449. // If no callback function or if callback is not a callable function
  450. if (!isFunction(fun)) {
  451. throw new TypeError(fun + " is not a function");
  452. }
  453. // no value to return if no initial value and an empty array
  454. if (!length && arguments.length === 1) {
  455. throw new TypeError("reduce of empty array with no initial value");
  456. }
  457. var i = 0;
  458. var result;
  459. if (arguments.length >= 2) {
  460. result = arguments[1];
  461. } else {
  462. do {
  463. if (i in self) {
  464. result = self[i++];
  465. break;
  466. }
  467. // if array contains no values, no initial value to return
  468. if (++i >= length) {
  469. throw new TypeError("reduce of empty array with no initial value");
  470. }
  471. } while (true);
  472. }
  473. for (; i < length; i++) {
  474. if (i in self) {
  475. result = fun.call(void 0, result, self[i], i, object);
  476. }
  477. }
  478. return result;
  479. };
  480. }
  481. // ES5 15.4.4.22
  482. // http://es5.github.com/#x15.4.4.22
  483. // https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Objects/Array/reduceRight
  484. if (!Array.prototype.reduceRight) {
  485. Array.prototype.reduceRight = function reduceRight(fun /*, initial*/) {
  486. var object = toObject(this),
  487. self = splitString && _toString(this) === "[object String]" ?
  488. this.split("") :
  489. object,
  490. length = self.length >>> 0;
  491. // If no callback function or if callback is not a callable function
  492. if (!isFunction(fun)) {
  493. throw new TypeError(fun + " is not a function");
  494. }
  495. // no value to return if no initial value, empty array
  496. if (!length && arguments.length === 1) {
  497. throw new TypeError("reduceRight of empty array with no initial value");
  498. }
  499. var result, i = length - 1;
  500. if (arguments.length >= 2) {
  501. result = arguments[1];
  502. } else {
  503. do {
  504. if (i in self) {
  505. result = self[i--];
  506. break;
  507. }
  508. // if array contains no values, no initial value to return
  509. if (--i < 0) {
  510. throw new TypeError("reduceRight of empty array with no initial value");
  511. }
  512. } while (true);
  513. }
  514. if (i < 0) {
  515. return result;
  516. }
  517. do {
  518. if (i in this) {
  519. result = fun.call(void 0, result, self[i], i, object);
  520. }
  521. } while (i--);
  522. return result;
  523. };
  524. }
  525. // ES5 15.4.4.14
  526. // http://es5.github.com/#x15.4.4.14
  527. // https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Array/indexOf
  528. if (!Array.prototype.indexOf || ([0, 1].indexOf(1, 2) !== -1)) {
  529. Array.prototype.indexOf = function indexOf(sought /*, fromIndex */ ) {
  530. var self = splitString && _toString(this) === "[object String]" ?
  531. this.split("") :
  532. toObject(this),
  533. length = self.length >>> 0;
  534. if (!length) {
  535. return -1;
  536. }
  537. var i = 0;
  538. if (arguments.length > 1) {
  539. i = toInteger(arguments[1]);
  540. }
  541. // handle negative indices
  542. i = i >= 0 ? i : Math.max(0, length + i);
  543. for (; i < length; i++) {
  544. if (i in self && self[i] === sought) {
  545. return i;
  546. }
  547. }
  548. return -1;
  549. };
  550. }
  551. // ES5 15.4.4.15
  552. // http://es5.github.com/#x15.4.4.15
  553. // https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Array/lastIndexOf
  554. if (!Array.prototype.lastIndexOf || ([0, 1].lastIndexOf(0, -3) !== -1)) {
  555. Array.prototype.lastIndexOf = function lastIndexOf(sought /*, fromIndex */) {
  556. var self = splitString && _toString(this) === "[object String]" ?
  557. this.split("") :
  558. toObject(this),
  559. length = self.length >>> 0;
  560. if (!length) {
  561. return -1;
  562. }
  563. var i = length - 1;
  564. if (arguments.length > 1) {
  565. i = Math.min(i, toInteger(arguments[1]));
  566. }
  567. // handle negative indices
  568. i = i >= 0 ? i : length - Math.abs(i);
  569. for (; i >= 0; i--) {
  570. if (i in self && sought === self[i]) {
  571. return i;
  572. }
  573. }
  574. return -1;
  575. };
  576. }
  577. //
  578. // Object
  579. // ======
  580. //
  581. // ES5 15.2.3.14
  582. // http://es5.github.com/#x15.2.3.14
  583. if (!Object.keys) {
  584. // http://whattheheadsaid.com/2010/10/a-safer-object-keys-compatibility-implementation
  585. var hasDontEnumBug = !({'toString': null}).propertyIsEnumerable('toString'),
  586. hasProtoEnumBug = (function () {}).propertyIsEnumerable('prototype'),
  587. dontEnums = [
  588. "toString",
  589. "toLocaleString",
  590. "valueOf",
  591. "hasOwnProperty",
  592. "isPrototypeOf",
  593. "propertyIsEnumerable",
  594. "constructor"
  595. ],
  596. dontEnumsLength = dontEnums.length,
  597. isArguments = function isArguments(value) {
  598. var str = _toString(value);
  599. var isArgs = str === '[object Arguments]';
  600. if (!isArgs) {
  601. isArgs = !Array.isArray(str)
  602. && value !== null
  603. && typeof value === 'object'
  604. && typeof value.length === 'number'
  605. && value.length >= 0
  606. && isFunction(value.callee);
  607. }
  608. return isArgs;
  609. };
  610. Object.keys = function keys(object) {
  611. var isFn = isFunction(object),
  612. isArgs = isArguments(object),
  613. isObject = object !== null && typeof object === 'object',
  614. isString = isObject && _toString(object) === '[object String]';
  615. if (!isObject && !isFn && !isArgs) {
  616. throw new TypeError("Object.keys called on a non-object");
  617. }
  618. var theKeys = [];
  619. var skipProto = hasProtoEnumBug && isFn;
  620. if (isString || isArgs) {
  621. for (var i = 0; i < object.length; ++i) {
  622. theKeys.push(String(i));
  623. }
  624. } else {
  625. for (var name in object) {
  626. if (!(skipProto && name === 'prototype') && owns(object, name)) {
  627. theKeys.push(String(name));
  628. }
  629. }
  630. }
  631. if (hasDontEnumBug) {
  632. var ctor = object.constructor,
  633. skipConstructor = ctor && ctor.prototype === object;
  634. for (var j = 0; j < dontEnumsLength; j++) {
  635. var dontEnum = dontEnums[j];
  636. if (!(skipConstructor && dontEnum === 'constructor') && owns(object, dontEnum)) {
  637. theKeys.push(dontEnum);
  638. }
  639. }
  640. }
  641. return theKeys;
  642. };
  643. }
  644. //
  645. // Date
  646. // ====
  647. //
  648. // ES5 15.9.5.43
  649. // http://es5.github.com/#x15.9.5.43
  650. // This function returns a String value represent the instance in time
  651. // represented by this Date object. The format of the String is the Date Time
  652. // string format defined in 15.9.1.15. All fields are present in the String.
  653. // The time zone is always UTC, denoted by the suffix Z. If the time value of
  654. // this object is not a finite Number a RangeError exception is thrown.
  655. var negativeDate = -62198755200000,
  656. negativeYearString = "-000001";
  657. if (
  658. !Date.prototype.toISOString ||
  659. (new Date(negativeDate).toISOString().indexOf(negativeYearString) === -1)
  660. ) {
  661. Date.prototype.toISOString = function toISOString() {
  662. var result, length, value, year, month;
  663. if (!isFinite(this)) {
  664. throw new RangeError("Date.prototype.toISOString called on non-finite value.");
  665. }
  666. year = this.getUTCFullYear();
  667. month = this.getUTCMonth();
  668. // see https://github.com/es-shims/es5-shim/issues/111
  669. year += Math.floor(month / 12);
  670. month = (month % 12 + 12) % 12;
  671. // the date time string format is specified in 15.9.1.15.
  672. result = [month + 1, this.getUTCDate(),
  673. this.getUTCHours(), this.getUTCMinutes(), this.getUTCSeconds()];
  674. year = (
  675. (year < 0 ? "-" : (year > 9999 ? "+" : "")) +
  676. ("00000" + Math.abs(year))
  677. .slice(0 <= year && year <= 9999 ? -4 : -6)
  678. );
  679. length = result.length;
  680. while (length--) {
  681. value = result[length];
  682. // pad months, days, hours, minutes, and seconds to have two
  683. // digits.
  684. if (value < 10) {
  685. result[length] = "0" + value;
  686. }
  687. }
  688. // pad milliseconds to have three digits.
  689. return (
  690. year + "-" + result.slice(0, 2).join("-") +
  691. "T" + result.slice(2).join(":") + "." +
  692. ("000" + this.getUTCMilliseconds()).slice(-3) + "Z"
  693. );
  694. };
  695. }
  696. // ES5 15.9.5.44
  697. // http://es5.github.com/#x15.9.5.44
  698. // This function provides a String representation of a Date object for use by
  699. // JSON.stringify (15.12.3).
  700. var dateToJSONIsSupported = false;
  701. try {
  702. dateToJSONIsSupported = (
  703. Date.prototype.toJSON &&
  704. new Date(NaN).toJSON() === null &&
  705. new Date(negativeDate).toJSON().indexOf(negativeYearString) !== -1 &&
  706. Date.prototype.toJSON.call({ // generic
  707. toISOString: function () {
  708. return true;
  709. }
  710. })
  711. );
  712. } catch (e) {
  713. }
  714. if (!dateToJSONIsSupported) {
  715. Date.prototype.toJSON = function toJSON(key) {
  716. // When the toJSON method is called with argument key, the following
  717. // steps are taken:
  718. // 1. Let O be the result of calling ToObject, giving it the this
  719. // value as its argument.
  720. // 2. Let tv be toPrimitive(O, hint Number).
  721. var o = Object(this),
  722. tv = toPrimitive(o),
  723. toISO;
  724. // 3. If tv is a Number and is not finite, return null.
  725. if (typeof tv === "number" && !isFinite(tv)) {
  726. return null;
  727. }
  728. // 4. Let toISO be the result of calling the [[Get]] internal method of
  729. // O with argument "toISOString".
  730. toISO = o.toISOString;
  731. // 5. If IsCallable(toISO) is false, throw a TypeError exception.
  732. if (typeof toISO !== "function") {
  733. throw new TypeError("toISOString property is not callable");
  734. }
  735. // 6. Return the result of calling the [[Call]] internal method of
  736. // toISO with O as the this value and an empty argument list.
  737. return toISO.call(o);
  738. // NOTE 1 The argument is ignored.
  739. // NOTE 2 The toJSON function is intentionally generic; it does not
  740. // require that its this value be a Date object. Therefore, it can be
  741. // transferred to other kinds of objects for use as a method. However,
  742. // it does require that any such object have a toISOString method. An
  743. // object is free to use the argument key to filter its
  744. // stringification.
  745. };
  746. }
  747. // ES5 15.9.4.2
  748. // http://es5.github.com/#x15.9.4.2
  749. // based on work shared by Daniel Friesen (dantman)
  750. // http://gist.github.com/303249
  751. var supportsExtendedYears = Date.parse('+033658-09-27T01:46:40.000Z') === 1e15;
  752. var acceptsInvalidDates = !isNaN(Date.parse('2012-04-04T24:00:00.500Z')) || !isNaN(Date.parse('2012-11-31T23:59:59.000Z'));
  753. var doesNotParseY2KNewYear = isNaN(Date.parse("2000-01-01T00:00:00.000Z"));
  754. if (!Date.parse || doesNotParseY2KNewYear || acceptsInvalidDates || !supportsExtendedYears) {
  755. // XXX global assignment won't work in embeddings that use
  756. // an alternate object for the context.
  757. Date = (function(NativeDate) {
  758. // Date.length === 7
  759. function Date(Y, M, D, h, m, s, ms) {
  760. var length = arguments.length;
  761. if (this instanceof NativeDate) {
  762. var date = length === 1 && String(Y) === Y ? // isString(Y)
  763. // We explicitly pass it through parse:
  764. new NativeDate(Date.parse(Y)) :
  765. // We have to manually make calls depending on argument
  766. // length here
  767. length >= 7 ? new NativeDate(Y, M, D, h, m, s, ms) :
  768. length >= 6 ? new NativeDate(Y, M, D, h, m, s) :
  769. length >= 5 ? new NativeDate(Y, M, D, h, m) :
  770. length >= 4 ? new NativeDate(Y, M, D, h) :
  771. length >= 3 ? new NativeDate(Y, M, D) :
  772. length >= 2 ? new NativeDate(Y, M) :
  773. length >= 1 ? new NativeDate(Y) :
  774. new NativeDate();
  775. // Prevent mixups with unfixed Date object
  776. date.constructor = Date;
  777. return date;
  778. }
  779. return NativeDate.apply(this, arguments);
  780. }
  781. // 15.9.1.15 Date Time String Format.
  782. var isoDateExpression = new RegExp("^" +
  783. "(\\d{4}|[\+\-]\\d{6})" + // four-digit year capture or sign +
  784. // 6-digit extended year
  785. "(?:-(\\d{2})" + // optional month capture
  786. "(?:-(\\d{2})" + // optional day capture
  787. "(?:" + // capture hours:minutes:seconds.milliseconds
  788. "T(\\d{2})" + // hours capture
  789. ":(\\d{2})" + // minutes capture
  790. "(?:" + // optional :seconds.milliseconds
  791. ":(\\d{2})" + // seconds capture
  792. "(?:(\\.\\d{1,}))?" + // milliseconds capture
  793. ")?" +
  794. "(" + // capture UTC offset component
  795. "Z|" + // UTC capture
  796. "(?:" + // offset specifier +/-hours:minutes
  797. "([-+])" + // sign capture
  798. "(\\d{2})" + // hours offset capture
  799. ":(\\d{2})" + // minutes offset capture
  800. ")" +
  801. ")?)?)?)?" +
  802. "$");
  803. var months = [
  804. 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334, 365
  805. ];
  806. function dayFromMonth(year, month) {
  807. var t = month > 1 ? 1 : 0;
  808. return (
  809. months[month] +
  810. Math.floor((year - 1969 + t) / 4) -
  811. Math.floor((year - 1901 + t) / 100) +
  812. Math.floor((year - 1601 + t) / 400) +
  813. 365 * (year - 1970)
  814. );
  815. }
  816. function toUTC(t) {
  817. return Number(new NativeDate(1970, 0, 1, 0, 0, 0, t));
  818. }
  819. // Copy any custom methods a 3rd party library may have added
  820. for (var key in NativeDate) {
  821. Date[key] = NativeDate[key];
  822. }
  823. // Copy "native" methods explicitly; they may be non-enumerable
  824. Date.now = NativeDate.now;
  825. Date.UTC = NativeDate.UTC;
  826. Date.prototype = NativeDate.prototype;
  827. Date.prototype.constructor = Date;
  828. // Upgrade Date.parse to handle simplified ISO 8601 strings
  829. Date.parse = function parse(string) {
  830. var match = isoDateExpression.exec(string);
  831. if (match) {
  832. // parse months, days, hours, minutes, seconds, and milliseconds
  833. // provide default values if necessary
  834. // parse the UTC offset component
  835. var year = Number(match[1]),
  836. month = Number(match[2] || 1) - 1,
  837. day = Number(match[3] || 1) - 1,
  838. hour = Number(match[4] || 0),
  839. minute = Number(match[5] || 0),
  840. second = Number(match[6] || 0),
  841. millisecond = Math.floor(Number(match[7] || 0) * 1000),
  842. // When time zone is missed, local offset should be used
  843. // (ES 5.1 bug)
  844. // see https://bugs.ecmascript.org/show_bug.cgi?id=112
  845. isLocalTime = Boolean(match[4] && !match[8]),
  846. signOffset = match[9] === "-" ? 1 : -1,
  847. hourOffset = Number(match[10] || 0),
  848. minuteOffset = Number(match[11] || 0),
  849. result;
  850. if (
  851. hour < (
  852. minute > 0 || second > 0 || millisecond > 0 ?
  853. 24 : 25
  854. ) &&
  855. minute < 60 && second < 60 && millisecond < 1000 &&
  856. month > -1 && month < 12 && hourOffset < 24 &&
  857. minuteOffset < 60 && // detect invalid offsets
  858. day > -1 &&
  859. day < (
  860. dayFromMonth(year, month + 1) -
  861. dayFromMonth(year, month)
  862. )
  863. ) {
  864. result = (
  865. (dayFromMonth(year, month) + day) * 24 +
  866. hour +
  867. hourOffset * signOffset
  868. ) * 60;
  869. result = (
  870. (result + minute + minuteOffset * signOffset) * 60 +
  871. second
  872. ) * 1000 + millisecond;
  873. if (isLocalTime) {
  874. result = toUTC(result);
  875. }
  876. if (-8.64e15 <= result && result <= 8.64e15) {
  877. return result;
  878. }
  879. }
  880. return NaN;
  881. }
  882. return NativeDate.parse.apply(this, arguments);
  883. };
  884. return Date;
  885. })(Date);
  886. }
  887. // ES5 15.9.4.4
  888. // http://es5.github.com/#x15.9.4.4
  889. if (!Date.now) {
  890. Date.now = function now() {
  891. return new Date().getTime();
  892. };
  893. }
  894. //
  895. // Number
  896. // ======
  897. //
  898. // ES5.1 15.7.4.5
  899. // http://es5.github.com/#x15.7.4.5
  900. if (!Number.prototype.toFixed || (0.00008).toFixed(3) !== '0.000' || (0.9).toFixed(0) === '0' || (1.255).toFixed(2) !== '1.25' || (1000000000000000128).toFixed(0) !== "1000000000000000128") {
  901. // Hide these variables and functions
  902. (function () {
  903. var base, size, data, i;
  904. base = 1e7;
  905. size = 6;
  906. data = [0, 0, 0, 0, 0, 0];
  907. function multiply(n, c) {
  908. var i = -1;
  909. while (++i < size) {
  910. c += n * data[i];
  911. data[i] = c % base;
  912. c = Math.floor(c / base);
  913. }
  914. }
  915. function divide(n) {
  916. var i = size, c = 0;
  917. while (--i >= 0) {
  918. c += data[i];
  919. data[i] = Math.floor(c / n);
  920. c = (c % n) * base;
  921. }
  922. }
  923. function toString() {
  924. var i = size;
  925. var s = '';
  926. while (--i >= 0) {
  927. if (s !== '' || i === 0 || data[i] !== 0) {
  928. var t = String(data[i]);
  929. if (s === '') {
  930. s = t;
  931. } else {
  932. s += '0000000'.slice(0, 7 - t.length) + t;
  933. }
  934. }
  935. }
  936. return s;
  937. }
  938. function pow(x, n, acc) {
  939. return (n === 0 ? acc : (n % 2 === 1 ? pow(x, n - 1, acc * x) : pow(x * x, n / 2, acc)));
  940. }
  941. function log(x) {
  942. var n = 0;
  943. while (x >= 4096) {
  944. n += 12;
  945. x /= 4096;
  946. }
  947. while (x >= 2) {
  948. n += 1;
  949. x /= 2;
  950. }
  951. return n;
  952. }
  953. Number.prototype.toFixed = function toFixed(fractionDigits) {
  954. var f, x, s, m, e, z, j, k;
  955. // Test for NaN and round fractionDigits down
  956. f = Number(fractionDigits);
  957. f = f !== f ? 0 : Math.floor(f);
  958. if (f < 0 || f > 20) {
  959. throw new RangeError("Number.toFixed called with invalid number of decimals");
  960. }
  961. x = Number(this);
  962. // Test for NaN
  963. if (x !== x) {
  964. return "NaN";
  965. }
  966. // If it is too big or small, return the string value of the number
  967. if (x <= -1e21 || x >= 1e21) {
  968. return String(x);
  969. }
  970. s = "";
  971. if (x < 0) {
  972. s = "-";
  973. x = -x;
  974. }
  975. m = "0";
  976. if (x > 1e-21) {
  977. // 1e-21 < x < 1e21
  978. // -70 < log2(x) < 70
  979. e = log(x * pow(2, 69, 1)) - 69;
  980. z = (e < 0 ? x * pow(2, -e, 1) : x / pow(2, e, 1));
  981. z *= 0x10000000000000; // Math.pow(2, 52);
  982. e = 52 - e;
  983. // -18 < e < 122
  984. // x = z / 2 ^ e
  985. if (e > 0) {
  986. multiply(0, z);
  987. j = f;
  988. while (j >= 7) {
  989. multiply(1e7, 0);
  990. j -= 7;
  991. }
  992. multiply(pow(10, j, 1), 0);
  993. j = e - 1;
  994. while (j >= 23) {
  995. divide(1 << 23);
  996. j -= 23;
  997. }
  998. divide(1 << j);
  999. multiply(1, 1);
  1000. divide(2);
  1001. m = toString();
  1002. } else {
  1003. multiply(0, z);
  1004. multiply(1 << (-e), 0);
  1005. m = toString() + '0.00000000000000000000'.slice(2, 2 + f);
  1006. }
  1007. }
  1008. if (f > 0) {
  1009. k = m.length;
  1010. if (k <= f) {
  1011. m = s + '0.0000000000000000000'.slice(0, f - k + 2) + m;
  1012. } else {
  1013. m = s + m.slice(0, k - f) + '.' + m.slice(k - f);
  1014. }
  1015. } else {
  1016. m = s + m;
  1017. }
  1018. return m;
  1019. };
  1020. }());
  1021. }
  1022. //
  1023. // String
  1024. // ======
  1025. //
  1026. // ES5 15.5.4.14
  1027. // http://es5.github.com/#x15.5.4.14
  1028. // [bugfix, IE lt 9, firefox 4, Konqueror, Opera, obscure browsers]
  1029. // Many browsers do not split properly with regular expressions or they
  1030. // do not perform the split correctly under obscure conditions.
  1031. // See http://blog.stevenlevithan.com/archives/cross-browser-split
  1032. // I've tested in many browsers and this seems to cover the deviant ones:
  1033. // 'ab'.split(/(?:ab)*/) should be ["", ""], not [""]
  1034. // '.'.split(/(.?)(.?)/) should be ["", ".", "", ""], not ["", ""]
  1035. // 'tesst'.split(/(s)*/) should be ["t", undefined, "e", "s", "t"], not
  1036. // [undefined, "t", undefined, "e", ...]
  1037. // ''.split(/.?/) should be [], not [""]
  1038. // '.'.split(/()()/) should be ["."], not ["", "", "."]
  1039. var string_split = String.prototype.split;
  1040. if (
  1041. 'ab'.split(/(?:ab)*/).length !== 2 ||
  1042. '.'.split(/(.?)(.?)/).length !== 4 ||
  1043. 'tesst'.split(/(s)*/)[1] === "t" ||
  1044. ''.split(/.?/).length ||
  1045. '.'.split(/()()/).length > 1
  1046. ) {
  1047. (function () {
  1048. var compliantExecNpcg = /()??/.exec("")[1] === void 0; // NPCG: nonparticipating capturing group
  1049. String.prototype.split = function (separator, limit) {
  1050. var string = this;
  1051. if (separator === void 0 && limit === 0)
  1052. return [];
  1053. // If `separator` is not a regex, use native split
  1054. if (Object.prototype.toString.call(separator) !== "[object RegExp]") {
  1055. return string_split.apply(this, arguments);
  1056. }
  1057. var output = [],
  1058. flags = (separator.ignoreCase ? "i" : "") +
  1059. (separator.multiline ? "m" : "") +
  1060. (separator.extended ? "x" : "") + // Proposed for ES6
  1061. (separator.sticky ? "y" : ""), // Firefox 3+
  1062. lastLastIndex = 0,
  1063. // Make `global` and avoid `lastIndex` issues by working with a copy
  1064. separator2, match, lastIndex, lastLength;
  1065. separator = new RegExp(separator.source, flags + "g");
  1066. string += ""; // Type-convert
  1067. if (!compliantExecNpcg) {
  1068. // Doesn't need flags gy, but they don't hurt
  1069. separator2 = new RegExp("^" + separator.source + "$(?!\\s)", flags);
  1070. }
  1071. /* Values for `limit`, per the spec:
  1072. * If undefined: 4294967295 // Math.pow(2, 32) - 1
  1073. * If 0, Infinity, or NaN: 0
  1074. * If positive number: limit = Math.floor(limit); if (limit > 4294967295) limit -= 4294967296;
  1075. * If negative number: 4294967296 - Math.floor(Math.abs(limit))
  1076. * If other: Type-convert, then use the above rules
  1077. */
  1078. limit = limit === void 0 ?
  1079. -1 >>> 0 : // Math.pow(2, 32) - 1
  1080. limit >>> 0; // ToUint32(limit)
  1081. while (match = separator.exec(string)) {
  1082. // `separator.lastIndex` is not reliable cross-browser
  1083. lastIndex = match.index + match[0].length;
  1084. if (lastIndex > lastLastIndex) {
  1085. output.push(string.slice(lastLastIndex, match.index));
  1086. // Fix browsers whose `exec` methods don't consistently return `undefined` for
  1087. // nonparticipating capturing groups
  1088. if (!compliantExecNpcg && match.length > 1) {
  1089. match[0].replace(separator2, function () {
  1090. for (var i = 1; i < arguments.length - 2; i++) {
  1091. if (arguments[i] === void 0) {
  1092. match[i] = void 0;
  1093. }
  1094. }
  1095. });
  1096. }
  1097. if (match.length > 1 && match.index < string.length) {
  1098. Array.prototype.push.apply(output, match.slice(1));
  1099. }
  1100. lastLength = match[0].length;
  1101. lastLastIndex = lastIndex;
  1102. if (output.length >= limit) {
  1103. break;
  1104. }
  1105. }
  1106. if (separator.lastIndex === match.index) {
  1107. separator.lastIndex++; // Avoid an infinite loop
  1108. }
  1109. }
  1110. if (lastLastIndex === string.length) {
  1111. if (lastLength || !separator.test("")) {
  1112. output.push("");
  1113. }
  1114. } else {
  1115. output.push(string.slice(lastLastIndex));
  1116. }
  1117. return output.length > limit ? output.slice(0, limit) : output;
  1118. };
  1119. }());
  1120. // [bugfix, chrome]
  1121. // If separator is undefined, then the result array contains just one String,
  1122. // which is the this value (converted to a String). If limit is not undefined,
  1123. // then the output array is truncated so that it contains no more than limit
  1124. // elements.
  1125. // "0".split(undefined, 0) -> []
  1126. } else if ("0".split(void 0, 0).length) {
  1127. String.prototype.split = function split(separator, limit) {
  1128. if (separator === void 0 && limit === 0) return [];
  1129. return string_split.apply(this, arguments);
  1130. };
  1131. }
  1132. var str_replace = String.prototype.replace;
  1133. var replaceReportsGroupsCorrectly = (function () {
  1134. var groups = [];
  1135. 'x'.replace(/x(.)?/g, function (match, group) {
  1136. groups.push(group);
  1137. });
  1138. return groups.length === 1 && typeof groups[0] === 'undefined';
  1139. }());
  1140. if (!replaceReportsGroupsCorrectly) {
  1141. String.prototype.replace = function replace(searchValue, replaceValue) {
  1142. var isFn = isFunction(replaceValue);
  1143. var hasCapturingGroups = isRegex(searchValue) && (/\)[*?]/).test(searchValue.source);
  1144. if (!isFn || !hasCapturingGroups) {
  1145. return str_replace.apply(this, arguments);
  1146. } else {
  1147. var wrappedReplaceValue = function (match) {
  1148. var length = arguments.length;
  1149. var originalLastIndex = searchValue.lastIndex;
  1150. searchValue.lastIndex = 0;
  1151. var args = searchValue.exec(match);
  1152. searchValue.lastIndex = originalLastIndex;
  1153. args.push(arguments[length - 2], arguments[length - 1]);
  1154. return replaceValue.apply(this, args);
  1155. };
  1156. return str_replace.call(this, searchValue, wrappedReplaceValue);
  1157. }
  1158. };
  1159. }
  1160. // ECMA-262, 3rd B.2.3
  1161. // Note an ECMAScript standart, although ECMAScript 3rd Edition has a
  1162. // non-normative section suggesting uniform semantics and it should be
  1163. // normalized across all browsers
  1164. // [bugfix, IE lt 9] IE < 9 substr() with negative value not working in IE
  1165. if ("".substr && "0b".substr(-1) !== "b") {
  1166. var string_substr = String.prototype.substr;
  1167. /**
  1168. * Get the substring of a string
  1169. * @param {integer} start where to start the substring
  1170. * @param {integer} length how many characters to return
  1171. * @return {string}
  1172. */
  1173. String.prototype.substr = function substr(start, length) {
  1174. return string_substr.call(
  1175. this,
  1176. start < 0 ? ((start = this.length + start) < 0 ? 0 : start) : start,
  1177. length
  1178. );
  1179. };
  1180. }
  1181. // ES5 15.5.4.20
  1182. // whitespace from: http://es5.github.io/#x15.5.4.20
  1183. var ws = "\x09\x0A\x0B\x0C\x0D\x20\xA0\u1680\u180E\u2000\u2001\u2002\u2003" +
  1184. "\u2004\u2005\u2006\u2007\u2008\u2009\u200A\u202F\u205F\u3000\u2028" +
  1185. "\u2029\uFEFF";
  1186. var zeroWidth = '\u200b';
  1187. if (!String.prototype.trim || ws.trim() || !zeroWidth.trim()) {
  1188. // http://blog.stevenlevithan.com/archives/faster-trim-javascript
  1189. // http://perfectionkills.com/whitespace-deviations/
  1190. ws = "[" + ws + "]";
  1191. var trimBeginRegexp = new RegExp("^" + ws + ws + "*"),
  1192. trimEndRegexp = new RegExp(ws + ws + "*$");
  1193. String.prototype.trim = function trim() {
  1194. if (this === void 0 || this === null) {
  1195. throw new TypeError("can't convert "+this+" to object");
  1196. }
  1197. return String(this)
  1198. .replace(trimBeginRegexp, "")
  1199. .replace(trimEndRegexp, "");
  1200. };
  1201. }
  1202. // ES-5 15.1.2.2
  1203. if (parseInt(ws + '08') !== 8 || parseInt(ws + '0x16') !== 22) {
  1204. parseInt = (function (origParseInt) {
  1205. var hexRegex = /^0[xX]/;
  1206. return function parseIntES5(str, radix) {
  1207. str = String(str).trim();
  1208. if (!Number(radix)) {
  1209. radix = hexRegex.test(str) ? 16 : 10;
  1210. }
  1211. return origParseInt(str, radix);
  1212. };
  1213. }(parseInt));
  1214. }
  1215. //
  1216. // Util
  1217. // ======
  1218. //
  1219. // ES5 9.4
  1220. // http://es5.github.com/#x9.4
  1221. // http://jsperf.com/to-integer
  1222. function toInteger(n) {
  1223. n = +n;
  1224. if (n !== n) { // isNaN
  1225. n = 0;
  1226. } else if (n !== 0 && n !== (1/0) && n !== -(1/0)) {
  1227. n = (n > 0 || -1) * Math.floor(Math.abs(n));
  1228. }
  1229. return n;
  1230. }
  1231. function isPrimitive(input) {
  1232. var type = typeof input;
  1233. return (
  1234. input === null ||
  1235. type === "undefined" ||
  1236. type === "boolean" ||
  1237. type === "number" ||
  1238. type === "string"
  1239. );
  1240. }
  1241. function toPrimitive(input) {
  1242. var val, valueOf, toStr;
  1243. if (isPrimitive(input)) {
  1244. return input;
  1245. }
  1246. valueOf = input.valueOf;
  1247. if (isFunction(valueOf)) {
  1248. val = valueOf.call(input);
  1249. if (isPrimitive(val)) {
  1250. return val;
  1251. }
  1252. }
  1253. toStr = input.toString;
  1254. if (isFunction(toStr)) {
  1255. val = toStr.call(input);
  1256. if (isPrimitive(val)) {
  1257. return val;
  1258. }
  1259. }
  1260. throw new TypeError();
  1261. }
  1262. // ES5 9.9
  1263. // http://es5.github.com/#x9.9
  1264. var toObject = function (o) {
  1265. if (o == null) { // this matches both null and undefined
  1266. throw new TypeError("can't convert "+o+" to object");
  1267. }
  1268. return Object(o);
  1269. };
  1270. }));