core-js 1.2.3 → 1.2.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (320) hide show
  1. package/CHANGELOG.md +408 -386
  2. package/bower.json +1 -1
  3. package/build/Gruntfile.ls +0 -5
  4. package/build/build.ls +24 -22
  5. package/build/index.js +2 -2
  6. package/client/core.js +1412 -1272
  7. package/client/core.min.js +4 -4
  8. package/client/core.min.js.map +1 -1
  9. package/client/library.js +1220 -1122
  10. package/client/library.min.js +4 -4
  11. package/client/library.min.js.map +1 -1
  12. package/client/shim.js +1304 -1164
  13. package/client/shim.min.js +4 -4
  14. package/client/shim.min.js.map +1 -1
  15. package/es6/symbol.js +1 -0
  16. package/fn/symbol/index.js +1 -0
  17. package/library/es6/symbol.js +1 -0
  18. package/library/fn/symbol/index.js +1 -0
  19. package/library/modules/{$.unscope.js → $.add-to-unscopables.js} +0 -0
  20. package/library/modules/$.array-fill.js +1 -1
  21. package/library/modules/$.array-methods.js +2 -12
  22. package/library/modules/$.array-species-create.js +16 -0
  23. package/library/modules/$.buffer.js +278 -285
  24. package/library/modules/$.collection-strong.js +9 -8
  25. package/library/modules/$.collection-weak.js +16 -15
  26. package/library/modules/$.collection.js +21 -14
  27. package/library/modules/$.core.js +1 -1
  28. package/library/modules/{$.support-desc.js → $.descriptors.js} +0 -0
  29. package/library/modules/$.export.js +46 -0
  30. package/library/modules/$.fails-is-regexp.js +2 -1
  31. package/library/modules/$.fix-re-wks.js +10 -5
  32. package/library/modules/$.flags.js +5 -5
  33. package/library/modules/$.get-names.js +3 -3
  34. package/library/modules/$.hide.js +1 -1
  35. package/library/modules/$.is-array-iter.js +5 -3
  36. package/library/modules/$.iter-create.js +5 -3
  37. package/library/modules/$.iter-define.js +46 -30
  38. package/library/modules/$.iter-detect.js +8 -6
  39. package/library/modules/{$.expm1.js → $.math-expm1.js} +0 -0
  40. package/library/modules/{$.log1p.js → $.math-log1p.js} +0 -0
  41. package/library/modules/{$.sign.js → $.math-sign.js} +0 -0
  42. package/library/modules/$.microtask.js +9 -2
  43. package/library/modules/{$.assign.js → $.object-assign.js} +0 -0
  44. package/library/modules/$.object-sap.js +6 -4
  45. package/library/modules/$.redefine-all.js +5 -0
  46. package/library/modules/{$.redef.js → $.redefine.js} +0 -0
  47. package/library/modules/{$.same.js → $.same-value.js} +1 -0
  48. package/library/modules/$.set-species.js +13 -0
  49. package/library/modules/{$.tag.js → $.set-to-string-tag.js} +0 -0
  50. package/library/modules/$.species-constructor.js +7 -7
  51. package/library/modules/$.string-at.js +5 -6
  52. package/library/modules/$.string-trim.js +17 -14
  53. package/library/modules/$.task.js +0 -1
  54. package/library/modules/$.to-primitive.js +12 -0
  55. package/library/modules/$.typed-array.js +345 -294
  56. package/library/modules/$.typed.js +36 -0
  57. package/library/modules/$.wks.js +2 -1
  58. package/library/modules/core.delay.js +2 -2
  59. package/library/modules/core.dict.js +20 -19
  60. package/library/modules/core.function.part.js +3 -4
  61. package/library/modules/core.is-iterable.js +1 -1
  62. package/library/modules/core.log.js +2 -2
  63. package/library/modules/core.object.classof.js +2 -2
  64. package/library/modules/core.object.define.js +3 -3
  65. package/library/modules/core.object.is-object.js +2 -2
  66. package/library/modules/core.object.make.js +4 -4
  67. package/library/modules/core.string.escape-html.js +9 -9
  68. package/library/modules/core.string.unescape-html.js +9 -9
  69. package/library/modules/es5.js +61 -60
  70. package/library/modules/es6.array.copy-within.js +3 -4
  71. package/library/modules/es6.array.fill.js +3 -3
  72. package/library/modules/es6.array.find-index.js +6 -6
  73. package/library/modules/es6.array.find.js +6 -6
  74. package/library/modules/es6.array.from.js +2 -2
  75. package/library/modules/es6.array.iterator.js +8 -8
  76. package/library/modules/es6.array.of.js +2 -2
  77. package/library/modules/es6.array.species.js +1 -1
  78. package/library/modules/es6.date.to-string.js +0 -0
  79. package/library/modules/es6.math.acosh.js +5 -5
  80. package/library/modules/es6.math.asinh.js +2 -2
  81. package/library/modules/es6.math.atanh.js +2 -2
  82. package/library/modules/es6.math.cbrt.js +3 -3
  83. package/library/modules/es6.math.clz32.js +2 -2
  84. package/library/modules/es6.math.cosh.js +3 -3
  85. package/library/modules/es6.math.expm1.js +2 -2
  86. package/library/modules/es6.math.fround.js +4 -4
  87. package/library/modules/es6.math.hypot.js +3 -3
  88. package/library/modules/es6.math.imul.js +3 -3
  89. package/library/modules/es6.math.log10.js +2 -2
  90. package/library/modules/es6.math.log1p.js +2 -2
  91. package/library/modules/es6.math.log2.js +2 -2
  92. package/library/modules/es6.math.sign.js +2 -2
  93. package/library/modules/es6.math.sinh.js +4 -4
  94. package/library/modules/es6.math.tanh.js +4 -4
  95. package/library/modules/es6.math.trunc.js +2 -2
  96. package/library/modules/es6.number.epsilon.js +2 -2
  97. package/library/modules/es6.number.is-finite.js +2 -2
  98. package/library/modules/es6.number.is-integer.js +2 -2
  99. package/library/modules/es6.number.is-nan.js +2 -2
  100. package/library/modules/es6.number.is-safe-integer.js +2 -2
  101. package/library/modules/es6.number.max-safe-integer.js +2 -2
  102. package/library/modules/es6.number.min-safe-integer.js +2 -2
  103. package/library/modules/es6.number.parse-float.js +2 -2
  104. package/library/modules/es6.number.parse-int.js +2 -2
  105. package/library/modules/es6.object.assign.js +2 -2
  106. package/library/modules/es6.object.is.js +2 -4
  107. package/library/modules/es6.object.set-prototype-of.js +2 -2
  108. package/library/modules/es6.promise.js +96 -66
  109. package/library/modules/es6.reflect.apply.js +5 -4
  110. package/library/modules/es6.reflect.construct.js +4 -3
  111. package/library/modules/es6.reflect.define-property.js +2 -2
  112. package/library/modules/es6.reflect.delete-property.js +2 -2
  113. package/library/modules/es6.reflect.enumerate.js +2 -2
  114. package/library/modules/es6.reflect.get-own-property-descriptor.js +2 -2
  115. package/library/modules/es6.reflect.get-prototype-of.js +2 -2
  116. package/library/modules/es6.reflect.get.js +2 -2
  117. package/library/modules/es6.reflect.has.js +2 -2
  118. package/library/modules/es6.reflect.is-extensible.js +2 -2
  119. package/library/modules/es6.reflect.own-keys.js +2 -2
  120. package/library/modules/es6.reflect.prevent-extensions.js +2 -2
  121. package/library/modules/es6.reflect.set-prototype-of.js +2 -2
  122. package/library/modules/es6.reflect.set.js +2 -2
  123. package/library/modules/es6.regexp.constructor.js +1 -1
  124. package/library/modules/es6.string.code-point-at.js +3 -3
  125. package/library/modules/es6.string.ends-with.js +2 -2
  126. package/library/modules/es6.string.from-code-point.js +4 -4
  127. package/library/modules/es6.string.includes.js +4 -3
  128. package/library/modules/es6.string.raw.js +2 -2
  129. package/library/modules/es6.string.repeat.js +2 -2
  130. package/library/modules/es6.string.starts-with.js +2 -2
  131. package/library/modules/es6.symbol.js +17 -16
  132. package/library/modules/es6.typed.array-buffer.js +43 -0
  133. package/library/modules/es6.typed.data-view.js +4 -0
  134. package/library/modules/{es6.typed-arrays.float32-array.js → es6.typed.float32-array.js} +0 -0
  135. package/library/modules/{es6.typed-arrays.float64-array.js → es6.typed.float64-array.js} +0 -0
  136. package/library/modules/{es6.typed-arrays.int16-array.js → es6.typed.int16-array.js} +0 -0
  137. package/library/modules/{es6.typed-arrays.int32-array.js → es6.typed.int32-array.js} +0 -0
  138. package/library/modules/{es6.typed-arrays.int8-array.js → es6.typed.int8-array.js} +0 -0
  139. package/library/modules/{es6.typed-arrays.uint16-array.js → es6.typed.uint16-array.js} +0 -0
  140. package/library/modules/{es6.typed-arrays.uint32-array.js → es6.typed.uint32-array.js} +0 -0
  141. package/library/modules/{es6.typed-arrays.uint8-array.js → es6.typed.uint8-array.js} +0 -0
  142. package/library/modules/{es6.typed-arrays.uint8-clamped-array.js → es6.typed.uint8-clamped-array.js} +0 -0
  143. package/library/modules/es6.weak-map.js +2 -1
  144. package/library/modules/es7.array.includes.js +5 -3
  145. package/library/modules/es7.map.to-json.js +2 -2
  146. package/library/modules/es7.object.entries.js +2 -2
  147. package/library/modules/es7.object.get-own-property-descriptors.js +2 -2
  148. package/library/modules/es7.object.values.js +2 -2
  149. package/library/modules/es7.regexp.escape.js +4 -3
  150. package/library/modules/es7.set.to-json.js +2 -2
  151. package/library/modules/es7.string.at.js +5 -4
  152. package/library/modules/es7.string.pad-left.js +4 -3
  153. package/library/modules/es7.string.pad-right.js +4 -3
  154. package/library/modules/js.array.statics.js +4 -3
  155. package/library/modules/web.immediate.js +3 -3
  156. package/library/modules/web.timers.js +2 -2
  157. package/modules/$.add-to-unscopables.js +7 -0
  158. package/modules/$.array-fill.js +1 -1
  159. package/modules/$.array-methods.js +2 -12
  160. package/modules/$.array-species-create.js +16 -0
  161. package/modules/$.buffer.js +278 -285
  162. package/modules/$.collection-strong.js +9 -8
  163. package/modules/$.collection-weak.js +16 -15
  164. package/modules/$.collection.js +37 -25
  165. package/modules/$.core.js +1 -1
  166. package/modules/{$.support-desc.js → $.descriptors.js} +0 -0
  167. package/modules/$.export.js +41 -0
  168. package/modules/$.fails-is-regexp.js +2 -1
  169. package/modules/$.fix-re-wks.js +10 -5
  170. package/modules/$.flags.js +5 -5
  171. package/modules/$.get-names.js +3 -3
  172. package/modules/$.hide.js +1 -1
  173. package/modules/$.is-array-iter.js +5 -3
  174. package/modules/$.iter-create.js +5 -3
  175. package/modules/$.iter-define.js +46 -30
  176. package/modules/$.iter-detect.js +8 -6
  177. package/modules/{$.expm1.js → $.math-expm1.js} +0 -0
  178. package/modules/{$.log1p.js → $.math-log1p.js} +0 -0
  179. package/modules/{$.sign.js → $.math-sign.js} +0 -0
  180. package/modules/$.microtask.js +9 -2
  181. package/modules/{$.assign.js → $.object-assign.js} +0 -0
  182. package/modules/$.object-sap.js +6 -4
  183. package/modules/$.redefine-all.js +5 -0
  184. package/modules/{$.redef.js → $.redefine.js} +0 -0
  185. package/modules/{$.same.js → $.same-value.js} +1 -0
  186. package/modules/$.set-species.js +13 -0
  187. package/modules/{$.tag.js → $.set-to-string-tag.js} +0 -0
  188. package/modules/$.species-constructor.js +7 -7
  189. package/modules/$.string-at.js +5 -6
  190. package/modules/$.string-trim.js +17 -14
  191. package/modules/$.task.js +0 -1
  192. package/modules/$.to-primitive.js +12 -0
  193. package/modules/$.typed-array.js +345 -294
  194. package/modules/$.typed.js +36 -0
  195. package/modules/$.wks.js +2 -1
  196. package/modules/core.delay.js +2 -2
  197. package/modules/core.dict.js +20 -19
  198. package/modules/core.function.part.js +3 -4
  199. package/modules/core.is-iterable.js +1 -1
  200. package/modules/core.log.js +2 -2
  201. package/modules/core.object.classof.js +2 -2
  202. package/modules/core.object.define.js +3 -3
  203. package/modules/core.object.is-object.js +2 -2
  204. package/modules/core.object.make.js +4 -4
  205. package/modules/core.string.escape-html.js +9 -9
  206. package/modules/core.string.unescape-html.js +9 -9
  207. package/modules/es5.js +61 -60
  208. package/modules/es6.array.copy-within.js +3 -4
  209. package/modules/es6.array.fill.js +3 -3
  210. package/modules/es6.array.find-index.js +6 -6
  211. package/modules/es6.array.find.js +6 -6
  212. package/modules/es6.array.from.js +2 -2
  213. package/modules/es6.array.iterator.js +8 -8
  214. package/modules/es6.array.of.js +2 -2
  215. package/modules/es6.array.species.js +1 -1
  216. package/modules/es6.date.to-string.js +10 -0
  217. package/modules/es6.function.name.js +1 -1
  218. package/modules/es6.math.acosh.js +5 -5
  219. package/modules/es6.math.asinh.js +2 -2
  220. package/modules/es6.math.atanh.js +2 -2
  221. package/modules/es6.math.cbrt.js +3 -3
  222. package/modules/es6.math.clz32.js +2 -2
  223. package/modules/es6.math.cosh.js +3 -3
  224. package/modules/es6.math.expm1.js +2 -2
  225. package/modules/es6.math.fround.js +4 -4
  226. package/modules/es6.math.hypot.js +3 -3
  227. package/modules/es6.math.imul.js +3 -3
  228. package/modules/es6.math.log10.js +2 -2
  229. package/modules/es6.math.log1p.js +2 -2
  230. package/modules/es6.math.log2.js +2 -2
  231. package/modules/es6.math.sign.js +2 -2
  232. package/modules/es6.math.sinh.js +4 -4
  233. package/modules/es6.math.tanh.js +4 -4
  234. package/modules/es6.math.trunc.js +2 -2
  235. package/modules/es6.number.constructor.js +43 -29
  236. package/modules/es6.number.epsilon.js +2 -2
  237. package/modules/es6.number.is-finite.js +2 -2
  238. package/modules/es6.number.is-integer.js +2 -2
  239. package/modules/es6.number.is-nan.js +2 -2
  240. package/modules/es6.number.is-safe-integer.js +2 -2
  241. package/modules/es6.number.max-safe-integer.js +2 -2
  242. package/modules/es6.number.min-safe-integer.js +2 -2
  243. package/modules/es6.number.parse-float.js +2 -2
  244. package/modules/es6.number.parse-int.js +2 -2
  245. package/modules/es6.object.assign.js +2 -2
  246. package/modules/es6.object.is.js +2 -4
  247. package/modules/es6.object.set-prototype-of.js +2 -2
  248. package/modules/es6.object.to-string.js +1 -1
  249. package/modules/es6.promise.js +96 -66
  250. package/modules/es6.reflect.apply.js +5 -4
  251. package/modules/es6.reflect.construct.js +4 -3
  252. package/modules/es6.reflect.define-property.js +2 -2
  253. package/modules/es6.reflect.delete-property.js +2 -2
  254. package/modules/es6.reflect.enumerate.js +2 -2
  255. package/modules/es6.reflect.get-own-property-descriptor.js +2 -2
  256. package/modules/es6.reflect.get-prototype-of.js +2 -2
  257. package/modules/es6.reflect.get.js +2 -2
  258. package/modules/es6.reflect.has.js +2 -2
  259. package/modules/es6.reflect.is-extensible.js +2 -2
  260. package/modules/es6.reflect.own-keys.js +2 -2
  261. package/modules/es6.reflect.prevent-extensions.js +2 -2
  262. package/modules/es6.reflect.set-prototype-of.js +2 -2
  263. package/modules/es6.reflect.set.js +2 -2
  264. package/modules/es6.regexp.constructor.js +3 -3
  265. package/modules/es6.regexp.flags.js +1 -1
  266. package/modules/es6.string.code-point-at.js +3 -3
  267. package/modules/es6.string.ends-with.js +2 -2
  268. package/modules/es6.string.from-code-point.js +4 -4
  269. package/modules/es6.string.includes.js +4 -3
  270. package/modules/es6.string.raw.js +2 -2
  271. package/modules/es6.string.repeat.js +2 -2
  272. package/modules/es6.string.starts-with.js +2 -2
  273. package/modules/es6.symbol.js +17 -16
  274. package/modules/es6.typed.array-buffer.js +43 -0
  275. package/modules/es6.typed.data-view.js +4 -0
  276. package/modules/{es6.typed-arrays.float32-array.js → es6.typed.float32-array.js} +0 -0
  277. package/modules/{es6.typed-arrays.float64-array.js → es6.typed.float64-array.js} +0 -0
  278. package/modules/{es6.typed-arrays.int16-array.js → es6.typed.int16-array.js} +0 -0
  279. package/modules/{es6.typed-arrays.int32-array.js → es6.typed.int32-array.js} +0 -0
  280. package/modules/{es6.typed-arrays.int8-array.js → es6.typed.int8-array.js} +0 -0
  281. package/modules/{es6.typed-arrays.uint16-array.js → es6.typed.uint16-array.js} +0 -0
  282. package/modules/{es6.typed-arrays.uint32-array.js → es6.typed.uint32-array.js} +0 -0
  283. package/modules/{es6.typed-arrays.uint8-array.js → es6.typed.uint8-array.js} +0 -0
  284. package/modules/{es6.typed-arrays.uint8-clamped-array.js → es6.typed.uint8-clamped-array.js} +0 -0
  285. package/modules/es6.weak-map.js +2 -1
  286. package/modules/es7.array.includes.js +5 -3
  287. package/modules/es7.map.to-json.js +2 -2
  288. package/modules/es7.object.entries.js +2 -2
  289. package/modules/es7.object.get-own-property-descriptors.js +2 -2
  290. package/modules/es7.object.values.js +2 -2
  291. package/modules/es7.regexp.escape.js +4 -3
  292. package/modules/es7.set.to-json.js +2 -2
  293. package/modules/es7.string.at.js +5 -4
  294. package/modules/es7.string.pad-left.js +4 -3
  295. package/modules/es7.string.pad-right.js +4 -3
  296. package/modules/js.array.statics.js +4 -3
  297. package/modules/library/{$.unscope.js → $.add-to-unscopables.js} +0 -0
  298. package/modules/library/$.collection.js +21 -14
  299. package/modules/library/$.export.js +46 -0
  300. package/modules/library/{$.redef.js → $.redefine.js} +0 -0
  301. package/modules/library/$.set-species.js +13 -0
  302. package/modules/library/es6.date.to-string.js +0 -0
  303. package/modules/library/es6.regexp.constructor.js +1 -1
  304. package/modules/web.dom.iterable.js +2 -2
  305. package/modules/web.immediate.js +3 -3
  306. package/modules/web.timers.js +2 -2
  307. package/package.json +6 -6
  308. package/README.md +0 -1289
  309. package/library/modules/$.def.js +0 -47
  310. package/library/modules/$.mix.js +0 -5
  311. package/library/modules/$.species.js +0 -9
  312. package/library/modules/es6.typed-arrays.array-buffer.js +0 -33
  313. package/library/modules/es6.typed-arrays.data-view.js +0 -4
  314. package/modules/$.def.js +0 -42
  315. package/modules/$.mix.js +0 -5
  316. package/modules/$.species.js +0 -9
  317. package/modules/$.unscope.js +0 -6
  318. package/modules/es6.typed-arrays.array-buffer.js +0 -33
  319. package/modules/es6.typed-arrays.data-view.js +0 -4
  320. package/modules/library/$.def.js +0 -47
package/CHANGELOG.md CHANGED
@@ -1,387 +1,409 @@
1
- ## Changelog
2
- ##### 1.2.3 - 2015.10.23
3
- * fixed some problems related old V8 bug `Object('a').propertyIsEnumerable(0) // => false`, for example, `Object.assign({}, 'qwe')` from the last release
4
- * fixed `.name` property and `Function#toString` conversion some polyfilled methods
5
- * fixed `Math.imul` arity in Safari 8-
6
-
7
- ##### 1.2.2 - 2015.10.18
8
- * improved optimisations for V8
9
- * fixed build process from external packages, [#120](https://github.com/zloirock/core-js/pull/120)
10
- * one more `Object.{assign, values, entries}` fix for [**very** specific case](https://github.com/ljharb/proposal-object-values-entries/issues/5)
11
-
12
- ##### 1.2.1 - 2015.10.02
13
- * replaced fix `JSON.stringify` + `Symbol` behavior from `.toJSON` method to wrapping `JSON.stringify` - little more correct, [compat-table/642](https://github.com/kangax/compat-table/pull/642)
14
- * fixed typo which broke tasks scheduler in WebWorkers in old FF, [#114](https://github.com/zloirock/core-js/pull/114)
15
-
16
- ##### 1.2.0 - 2015.09.27
17
- * added browser [`Promise` rejection hook](#unhandled-rejection-tracking), [#106](https://github.com/zloirock/core-js/issues/106)
18
- * added correct [`IsRegExp`](http://www.ecma-international.org/ecma-262/6.0/#sec-isregexp) logic to [`String#{includes, startsWith, endsWith}`](https://github.com/zloirock/core-js/#ecmascript-6-string) and [`RegExp` constructor](https://github.com/zloirock/core-js/#ecmascript-6-regexp), `@@match` case, [example](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol/match#Disabling_the_isRegExp_check)
19
- * updated [`String#leftPad`](https://github.com/zloirock/core-js/#ecmascript-7) [with proposal](https://github.com/ljharb/proposal-string-pad-left-right/issues/6): string filler truncated from the right side
20
- * replaced V8 [`Object.assign`](https://github.com/zloirock/core-js/#ecmascript-6-object) - its properties order not only [incorrect](https://github.com/sindresorhus/object-assign/issues/22), it is non-deterministic and it causes some problems
21
- * fixed behavior with deleted in getters properties for `Object.{`[`assign`](https://github.com/zloirock/core-js/#ecmascript-6-object)`, `[`entries, values`](https://github.com/zloirock/core-js/#ecmascript-7)`}`, [example](http://goo.gl/iQE01c)
22
- * fixed [`Math.sinh`](https://github.com/zloirock/core-js/#ecmascript-6-math) with very small numbers in V8 near Chromium 38
23
- * some other fixes and optimizations
24
-
25
- ##### 1.1.4 - 2015.09.05
26
- * fixed support symbols in FF34-35 [`Object.assign`](https://github.com/zloirock/core-js/#ecmascript-6-object)
27
- * fixed [collections iterators](https://github.com/zloirock/core-js/#ecmascript-6-iterators) in FF25-26
28
- * fixed non-generic WebKit [`Array.of`](https://github.com/zloirock/core-js/#ecmascript-6-array)
29
- * some other fixes and optimizations
30
-
31
- ##### 1.1.3 - 2015.08.29
32
- * fixed support Node.js domains in [`Promise`](https://github.com/zloirock/core-js/#ecmascript-6-promise), [#103](https://github.com/zloirock/core-js/issues/103)
33
-
34
- ##### 1.1.2 - 2015.08.28
35
- * added `toJSON` method to [`Symbol`](https://github.com/zloirock/core-js/#ecmascript-6-symbol) polyfill and to MS Edge implementation for expected `JSON.stringify` result w/o patching this method
36
- * replaced [`Reflect.construct`](https://github.com/zloirock/core-js/#ecmascript-6-reflect) implementations w/o correct support third argument
37
- * fixed `global` detection with changed `document.domain` in ~IE8, [#100](https://github.com/zloirock/core-js/issues/100)
38
-
39
- ##### 1.1.1 - 2015.08.20
40
- * added more correct microtask implementation for [`Promise`](#ecmascript-6-promise)
41
-
42
- ##### 1.1.0 - 2015.08.17
43
- * updated [string padding](https://github.com/zloirock/core-js/#ecmascript-7) to [actual proposal](https://github.com/ljharb/proposal-string-pad-left-right) - renamed, minor internal changes:
44
- * `String#lpad` -> `String#padLeft`
45
- * `String#rpad` -> `String#padRight`
46
- * added [string trim functions](#ecmascript-7) - [proposal](https://github.com/sebmarkbage/ecmascript-string-left-right-trim), defacto standard - required only for IE11- and fixed for some old engines:
47
- * `String#trimLeft`
48
- * `String#trimRight`
49
- * [`String#trim`](https://github.com/zloirock/core-js/#ecmascript-6-string) fixed for some engines by es6 spec and moved from `es5` to single `es6` module
50
- * splitted [`es6.object.statics-accept-primitives`](https://github.com/zloirock/core-js/#ecmascript-6-object)
51
- * caps for `freeze`-family `Object` methods moved from `es5` to `es6` namespace and joined with [es6 wrappers](https://github.com/zloirock/core-js/#ecmascript-6-object)
52
- * `es5` [namespace](https://github.com/zloirock/core-js/#commonjs) also includes modules, moved to `es6` namespace - you can use it as before
53
- * increased `MessageChannel` priority in `$.task`, [#95](https://github.com/zloirock/core-js/issues/95)
54
- * does not get `global.Symbol` on each getting iterator, if you wanna use alternative `Symbol` shim - add it before `core-js`
55
- * [`Reflect.construct`](https://github.com/zloirock/core-js/#ecmascript-6-reflect) optimized and fixed for some cases
56
- * simplified [`Reflect.enumerate`](https://github.com/zloirock/core-js/#ecmascript-6-reflect), see [this question](https://esdiscuss.org/topic/question-about-enumerate-and-property-decision-timing)
57
- * some corrections in [`Math.acosh`](https://github.com/zloirock/core-js/#ecmascript-6-math)
58
- * fixed [`Math.imul`](https://github.com/zloirock/core-js/#ecmascript-6-math) for old WebKit
59
- * some fixes in string / RegExp [well-known symbols](https://github.com/zloirock/core-js/#ecmascript-6-regexp) logic
60
- * some other fixes and optimizations
61
-
62
- ##### 1.0.1 - 2015.07.31
63
- * some fixes for final MS Edge, replaced broken native `Reflect.defineProperty`
64
- * some minor fixes and optimizations
65
- * changed compression `client/*.min.js` options for safe `Function#name` and `Function#length`, should be fixed [#92](https://github.com/zloirock/core-js/issues/92)
66
-
67
- ##### 1.0.0 - 2015.07.22
68
- * added logic for [well-known symbols](https://github.com/zloirock/core-js/#ecmascript-6-regexp):
69
- * `Symbol.match`
70
- * `Symbol.replace`
71
- * `Symbol.split`
72
- * `Symbol.search`
73
- * actualized and optimized work with iterables:
74
- * optimized [`Map`, `Set`, `WeakMap`, `WeakSet` constructors](https://github.com/zloirock/core-js/#ecmascript-6-collections), [`Promise.all`, `Promise.race`](https://github.com/zloirock/core-js/#ecmascript-6-promise) for default `Array Iterator`
75
- * optimized [`Array.from`](https://github.com/zloirock/core-js/#ecmascript-6-array) for default `Array Iterator`
76
- * added [`core.getIteratorMethod`](https://github.com/zloirock/core-js/#ecmascript-6-iterators) helper
77
- * uses enumerable properties in shimmed instances - collections, iterators, etc for optimize performance
78
- * added support native constructors to [`Reflect.construct`](https://github.com/zloirock/core-js/#ecmascript-6-reflect) with 2 arguments
79
- * added support native constructors to [`Function#bind`](https://github.com/zloirock/core-js/#ecmascript-5) shim with `new`
80
- * removed obsolete `.clear` methods native [`Weak`-collections](https://github.com/zloirock/core-js/#ecmascript-6-collections)
81
- * maximum modularity, reduced minimal custom build size, separated into submodules:
82
- * [`es6.reflect`](https://github.com/zloirock/core-js/#ecmascript-6-reflect)
83
- * [`es6.regexp`](https://github.com/zloirock/core-js/#ecmascript-6-regexp)
84
- * [`es6.math`](https://github.com/zloirock/core-js/#ecmascript-6-math)
85
- * [`es6.number`](https://github.com/zloirock/core-js/#ecmascript-6-number)
86
- * [`es7.object.to-array`](https://github.com/zloirock/core-js/#ecmascript-7)
87
- * [`core.object`](https://github.com/zloirock/core-js/#object)
88
- * [`core.string`](https://github.com/zloirock/core-js/#escaping-html)
89
- * [`core.iter-helpers`](https://github.com/zloirock/core-js/#ecmascript-6-iterators)
90
- * internal modules (`$`, `$.iter`, etc)
91
- * many other optimizations
92
- * final cleaning non-standard features
93
- * moved `$for` to [separate library](https://github.com/zloirock/forof). This work for syntax - `for-of` loop and comprehensions
94
- * moved `Date#{format, formatUTC}` to [separate library](https://github.com/zloirock/dtf). Standard way for this - `ECMA-402`
95
- * removed `Math` methods from `Number.prototype`. Slight sugar for simple `Math` methods calling
96
- * removed `{Array#, Array, Dict}.turn`
97
- * removed `core.global`
98
- * uses `ToNumber` instead of `ToLength` in [`Number Iterator`](https://github.com/zloirock/core-js/#number-iterator), `Array.from(2.5)` will be `[0, 1, 2]` instead of `[0, 1]`
99
- * fixed [#85](https://github.com/zloirock/core-js/issues/85) - invalid `Promise` unhandled rejection message in nested `setTimeout`
100
- * fixed [#86](https://github.com/zloirock/core-js/issues/86) - support FF extensions
101
- * fixed [#89](https://github.com/zloirock/core-js/issues/89) - behavior `Number` constructor in strange case
102
-
103
- ##### 0.9.18 - 2015.06.17
104
- * removed `/` from [`RegExp.escape`](https://github.com/zloirock/core-js/#ecmascript-7) escaped characters
105
-
106
- ##### 0.9.17 - 2015.06.14
107
- * updated [`RegExp.escape`](https://github.com/zloirock/core-js/#ecmascript-7) to the [latest proposal](https://github.com/benjamingr/RexExp.escape)
108
- * fixed conflict with webpack dev server + IE buggy behavior
109
-
110
- ##### 0.9.16 - 2015.06.11
111
- * more correct order resolving thenable in [`Promise`](https://github.com/zloirock/core-js/#ecmascript-6-promise) polyfill
112
- * uses polyfill instead of [buggy V8 `Promise`](https://github.com/zloirock/core-js/issues/78)
113
-
114
- ##### 0.9.15 - 2015.06.09
115
- * [collections](https://github.com/zloirock/core-js/#ecmascript-6-collections) from `library` version return wrapped native instances
116
- * fixed collections prototype methods in `library` version
117
- * optimized [`Math.hypot`](https://github.com/zloirock/core-js/#ecmascript-6-math)
118
-
119
- ##### 0.9.14 - 2015.06.04
120
- * updated [`Promise.resolve` behavior](https://esdiscuss.org/topic/fixing-promise-resolve)
121
- * added fallback for IE11 buggy `Object.getOwnPropertyNames` + iframe
122
- * some other fixes
123
-
124
- ##### 0.9.13 - 2015.05.25
125
- * added fallback for [`Symbol` polyfill](https://github.com/zloirock/core-js/#ecmascript-6-symbol) for old Android
126
- * some other fixes
127
-
128
- ##### 0.9.12 - 2015.05.24
129
- * different instances `core-js` should use / recognize the same symbols
130
- * some fixes
131
-
132
- ##### 0.9.11 - 2015.05.18
133
- * simplified [custom build](https://github.com/zloirock/core-js/#custom-build)
134
- * add custom build js api
135
- * added `grunt-cli` to `devDependencies` for `npm run grunt`
136
- * some fixes
137
-
138
- ##### 0.9.10 - 2015.05.16
139
- * wrapped `Function#toString` for correct work wrapped methods / constructors with methods similar to the [`lodash` `isNative`](https://github.com/lodash/lodash/issues/1197)
140
- * added proto versions of methods to export object in `default` version for consistency with `library` version
141
-
142
- ##### 0.9.9 - 2015.05.14
143
- * wrapped `Object#propertyIsEnumerable` for [`Symbol` polyfill](https://github.com/zloirock/core-js/#ecmascript-6-symbol)
144
- * [added proto versions of methods to `library` for ES7 bind syntax](https://github.com/zloirock/core-js/issues/65)
145
- * some other fixes
146
-
147
- ##### 0.9.8 - 2015.05.12
148
- * fixed [`Math.hypot`](https://github.com/zloirock/core-js/#ecmascript-6-math) with negative arguments
149
- * added `Object#toString.toString` as fallback for [`lodash` `isNative`](https://github.com/lodash/lodash/issues/1197)
150
-
151
- ##### 0.9.7 - 2015.05.07
152
- * added [support DOM collections](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/slice#Streamlining_cross-browser_behavior) to IE8- `Array#slice`
153
-
154
- ##### 0.9.6 - 2015.05.01
155
- * added [`String#lpad`, `String#rpad`](https://github.com/zloirock/core-js/#ecmascript-7)
156
-
157
- ##### 0.9.5 - 2015.04.30
158
- * added cap for `Function#@@hasInstance`
159
- * some fixes and optimizations
160
-
161
- ##### 0.9.4 - 2015.04.27
162
- * fixed `RegExp` constructor
163
-
164
- ##### 0.9.3 - 2015.04.26
165
- * some fixes and optimizations
166
-
167
- ##### 0.9.2 - 2015.04.25
168
- * more correct [`Promise`](https://github.com/zloirock/core-js/#ecmascript-6-promise) unhandled rejection tracking and resolving / rejection priority
169
-
170
- ##### 0.9.1 - 2015.04.25
171
- * fixed `__proto__`-based [`Promise`](https://github.com/zloirock/core-js/#ecmascript-6-promise) subclassing in some environments
172
-
173
- ##### 0.9.0 - 2015.04.24
174
- * added correct [symbols](https://github.com/zloirock/core-js/#ecmascript-6-symbol) descriptors
175
- * fixed behavior `Object.{assign, create, defineProperty, defineProperties, getOwnPropertyDescriptor, getOwnPropertyDescriptors}` with symbols
176
- * added [single entry points](https://github.com/zloirock/core-js/#commonjs) for `Object.{create, defineProperty, defineProperties}`
177
- * added [`Map#toJSON`](https://github.com/zloirock/core-js/#ecmascript-7)
178
- * removed non-standard methods `Object#[_]` and `Function#only` - they solves syntax problems, but now in compilers available arrows and ~~in near future will be available~~ [available](http://babeljs.io/blog/2015/05/14/function-bind/) [bind syntax](https://github.com/zenparsing/es-function-bind)
179
- * removed non-standard undocumented methods `Symbol.{pure, set}`
180
- * some fixes and internal changes
181
-
182
- ##### 0.8.4 - 2015.04.18
183
- * uses `webpack` instead of `browserify` for browser builds - more compression-friendly result
184
-
185
- ##### 0.8.3 - 2015.04.14
186
- * fixed `Array` statics with single entry points
187
-
188
- ##### 0.8.2 - 2015.04.13
189
- * [`Math.fround`](https://github.com/zloirock/core-js/#ecmascript-6-math) now also works in IE9-
190
- * added [`Set#toJSON`](https://github.com/zloirock/core-js/#ecmascript-7)
191
- * some optimizations and fixes
192
-
193
- ##### 0.8.1 - 2015.04.03
194
- * fixed `Symbol.keyFor`
195
-
196
- ##### 0.8.0 - 2015.04.02
197
- * changed [CommonJS API](https://github.com/zloirock/core-js/#commonjs)
198
- * splitted and renamed some modules
199
- * added support ES3 environment (ES5 polyfill) to **all** default versions - size increases slightly (+ ~4kb w/o gzip), many issues disappear, if you don't need it - [simply include only required namespaces / features / modules](https://github.com/zloirock/core-js/#commonjs)
200
- * removed [abstract references](https://github.com/zenparsing/es-abstract-refs) support - proposal has been superseded =\
201
- * [`$for.isIterable` -> `core.isIterable`, `$for.getIterator` -> `core.getIterator`](https://github.com/zloirock/core-js/#ecmascript-6-iterators), temporary available in old namespace
202
- * fixed iterators support in v8 `Promise.all` and `Promise.race`
203
- * many other fixes
204
-
205
- ##### 0.7.2 - 2015.03.09
206
- * some fixes
207
-
208
- ##### 0.7.1 - 2015.03.07
209
- * some fixes
210
-
211
- ##### 0.7.0 - 2015.03.06
212
- * rewritten and splitted into [CommonJS modules](https://github.com/zloirock/core-js/#commonjs)
213
-
214
- ##### 0.6.1 - 2015.02.24
215
- * fixed support [`Object.defineProperty`](https://github.com/zloirock/core-js/#ecmascript-5) with accessors on DOM elements on IE8
216
-
217
- ##### 0.6.0 - 2015.02.23
218
- * added support safe closing iteration - calling `iterator.return` on abort iteration, if it exists
219
- * added basic support [`Promise`](https://github.com/zloirock/core-js/#ecmascript-6-promise) unhandled rejection tracking in shim
220
- * added [`Object.getOwnPropertyDescriptors`](https://github.com/zloirock/core-js/#ecmascript-7)
221
- * removed `console` cap - creates too many problems - you can use [`core.log`](https://github.com/zloirock/core-js/#console) module as that
222
- * restructuring [namespaces](https://github.com/zloirock/core-js/#custom-build)
223
- * some fixes
224
-
225
- ##### 0.5.4 - 2015.02.15
226
- * some fixes
227
-
228
- ##### 0.5.3 - 2015.02.14
229
- * added [support binary and octal literals](https://github.com/zloirock/core-js/#ecmascript-6-number) to `Number` constructor
230
- * added [`Date#toISOString`](https://github.com/zloirock/core-js/#ecmascript-5)
231
-
232
- ##### 0.5.2 - 2015.02.10
233
- * some fixes
234
-
235
- ##### 0.5.1 - 2015.02.09
236
- * some fixes
237
-
238
- ##### 0.5.0 - 2015.02.08
239
- * systematization of modules
240
- * splitted [`es6` module](https://github.com/zloirock/core-js/#ecmascript-6)
241
- * splitted [`console` module](https://github.com/zloirock/core-js/#console): `web.console` - only cap for missing methods, `core.log` - bound methods & additional features
242
- * added [`delay` method](https://github.com/zloirock/core-js/#delay)
243
- * some fixes
244
-
245
- ##### 0.4.10 - 2015.01.28
246
- * [`Object.getOwnPropertySymbols`](https://github.com/zloirock/core-js/#ecmascript-6-symbol) polyfill returns array of wrapped keys
247
-
248
- ##### 0.4.9 - 2015.01.27
249
- * FF20-24 fix
250
-
251
- ##### 0.4.8 - 2015.01.25
252
- * some [collections](https://github.com/zloirock/core-js/#ecmascript-6-collections) fixes
253
-
254
- ##### 0.4.7 - 2015.01.25
255
- * added support frozen objects as [collections](https://github.com/zloirock/core-js/#ecmascript-6-collections) keys
256
-
257
- ##### 0.4.6 - 2015.01.21
258
- * added [`Object.getOwnPropertySymbols`](https://github.com/zloirock/core-js/#ecmascript-6-symbol)
259
- * added [`NodeList.prototype[@@iterator]`](https://github.com/zloirock/core-js/#ecmascript-6-iterators)
260
- * added basic `@@species` logic - getter in native constructors
261
- * removed `Function#by`
262
- * some fixes
263
-
264
- ##### 0.4.5 - 2015.01.16
265
- * some fixes
266
-
267
- ##### 0.4.4 - 2015.01.11
268
- * enabled CSP support
269
-
270
- ##### 0.4.3 - 2015.01.10
271
- * added `Function` instances `name` property for IE9+
272
-
273
- ##### 0.4.2 - 2015.01.10
274
- * `Object` static methods accept primitives
275
- * `RegExp` constructor can alter flags (IE9+)
276
- * added `Array.prototype[Symbol.unscopables]`
277
-
278
- ##### 0.4.1 - 2015.01.05
279
- * some fixes
280
-
281
- ##### 0.4.0 - 2015.01.03
282
- * added [`es6.reflect`](https://github.com/zloirock/core-js/#ecmascript-6-reflect) module:
283
- * added `Reflect.apply`
284
- * added `Reflect.construct`
285
- * added `Reflect.defineProperty`
286
- * added `Reflect.deleteProperty`
287
- * added `Reflect.enumerate`
288
- * added `Reflect.get`
289
- * added `Reflect.getOwnPropertyDescriptor`
290
- * added `Reflect.getPrototypeOf`
291
- * added `Reflect.has`
292
- * added `Reflect.isExtensible`
293
- * added `Reflect.preventExtensions`
294
- * added `Reflect.set`
295
- * added `Reflect.setPrototypeOf`
296
- * `core-js` methods now can use external `Symbol.iterator` polyfill
297
- * some fixes
298
-
299
- ##### 0.3.3 - 2014.12.28
300
- * [console cap](https://github.com/zloirock/core-js/#console) excluded from node.js default builds
301
-
302
- ##### 0.3.2 - 2014.12.25
303
- * added cap for [ES5](https://github.com/zloirock/core-js/#ecmascript-5) freeze-family methods
304
- * fixed `console` bug
305
-
306
- ##### 0.3.1 - 2014.12.23
307
- * some fixes
308
-
309
- ##### 0.3.0 - 2014.12.23
310
- * Optimize [`Map` & `Set`](https://github.com/zloirock/core-js/#ecmascript-6-collections):
311
- * use entries chain on hash table
312
- * fast & correct iteration
313
- * iterators moved to [`es6`](https://github.com/zloirock/core-js/#ecmascript-6) and [`es6.collections`](https://github.com/zloirock/core-js/#ecmascript-6-collections) modules
314
-
315
- ##### 0.2.5 - 2014.12.20
316
- * `console` no longer shortcut for `console.log` (compatibility problems)
317
- * some fixes
318
-
319
- ##### 0.2.4 - 2014.12.17
320
- * better compliance of ES6
321
- * added [`Math.fround`](https://github.com/zloirock/core-js/#ecmascript-6-math) (IE10+)
322
- * some fixes
323
-
324
- ##### 0.2.3 - 2014.12.15
325
- * [Symbols](https://github.com/zloirock/core-js/#ecmascript-6-symbol):
326
- * added option to disable addition setter to `Object.prototype` for Symbol polyfill:
327
- * added `Symbol.useSimple`
328
- * added `Symbol.useSetter`
329
- * added cap for well-known Symbols:
330
- * added `Symbol.hasInstance`
331
- * added `Symbol.isConcatSpreadable`
332
- * added `Symbol.match`
333
- * added `Symbol.replace`
334
- * added `Symbol.search`
335
- * added `Symbol.species`
336
- * added `Symbol.split`
337
- * added `Symbol.toPrimitive`
338
- * added `Symbol.unscopables`
339
-
340
- ##### 0.2.2 - 2014.12.13
341
- * added [`RegExp#flags`](https://github.com/zloirock/core-js/#ecmascript-6-regexp) ([December 2014 Draft Rev 29](http://wiki.ecmascript.org/doku.php?id=harmony:specification_drafts#december_6_2014_draft_rev_29))
342
- * added [`String.raw`](https://github.com/zloirock/core-js/#ecmascript-6-string)
343
-
344
- ##### 0.2.1 - 2014.12.12
345
- * repair converting -0 to +0 in [native collections](https://github.com/zloirock/core-js/#ecmascript-6-collections)
346
-
347
- ##### 0.2.0 - 2014.12.06
348
- * added [`es7.proposals`](https://github.com/zloirock/core-js/#ecmascript-7) and [`es7.abstract-refs`](https://github.com/zenparsing/es-abstract-refs) modules
349
- * added [`String#at`](https://github.com/zloirock/core-js/#ecmascript-7)
350
- * added real [`String Iterator`](https://github.com/zloirock/core-js/#ecmascript-6-iterators), older versions used Array Iterator
351
- * added abstract references support:
352
- * added `Symbol.referenceGet`
353
- * added `Symbol.referenceSet`
354
- * added `Symbol.referenceDelete`
355
- * added `Function#@@referenceGet`
356
- * added `Map#@@referenceGet`
357
- * added `Map#@@referenceSet`
358
- * added `Map#@@referenceDelete`
359
- * added `WeakMap#@@referenceGet`
360
- * added `WeakMap#@@referenceSet`
361
- * added `WeakMap#@@referenceDelete`
362
- * added `Dict.{...methods}[@@referenceGet]`
363
- * removed deprecated `.contains` methods
364
- * some fixes
365
-
366
- ##### 0.1.5 - 2014.12.01
367
- * added [`Array#copyWithin`](https://github.com/zloirock/core-js/#ecmascript-6-array)
368
- * added [`String#codePointAt`](https://github.com/zloirock/core-js/#ecmascript-6-string)
369
- * added [`String.fromCodePoint`](https://github.com/zloirock/core-js/#ecmascript-6-string)
370
-
371
- ##### 0.1.4 - 2014.11.27
372
- * added [`Dict.mapPairs`](https://github.com/zloirock/core-js/#dict)
373
-
374
- ##### 0.1.3 - 2014.11.20
375
- * [TC39 November meeting](https://github.com/rwaldron/tc39-notes/tree/master/es6/2014-11):
376
- * [`.contains` -> `.includes`](https://github.com/rwaldron/tc39-notes/blob/master/es6/2014-11/nov-18.md#51--44-arrayprototypecontains-and-stringprototypecontains)
377
- * `String#contains` -> [`String#includes`](https://github.com/zloirock/core-js/#ecmascript-6-string)
378
- * `Array#contains` -> [`Array#includes`](https://github.com/zloirock/core-js/#ecmascript-7)
379
- * `Dict.contains` -> [`Dict.includes`](https://github.com/zloirock/core-js/#dict)
380
- * [removed `WeakMap#clear`](https://github.com/rwaldron/tc39-notes/blob/master/es6/2014-11/nov-19.md#412-should-weakmapweakset-have-a-clear-method-markm)
381
- * [removed `WeakSet#clear`](https://github.com/rwaldron/tc39-notes/blob/master/es6/2014-11/nov-19.md#412-should-weakmapweakset-have-a-clear-method-markm)
382
-
383
- ##### 0.1.2 - 2014.11.19
384
- * `Map` & `Set` bug fix
385
-
386
- ##### 0.1.1 - 2014.11.18
1
+ ## Changelog
2
+ ##### 1.2.7 [LEGACY] - 2016.07.18
3
+ * some fixes for issues like #159, #186, #194, #207
4
+
5
+ ##### 1.2.6 - 2015.11.09
6
+ * reject with `TypeError` on attempt resolve promise itself
7
+ * correct behavior with broken `Promise` subclass constructors / methods
8
+ * added `Promise`-based fallback for microtask
9
+ * fixed V8 and FF `Array#{values, @@iterator}.name`
10
+ * fixed IE7- `[1, 2].join(undefined) -> '1,2'`
11
+ * some other fixes / improvements / optimizations
12
+
13
+ ##### 1.2.5 - 2015.11.02
14
+ * some more `Number` constructor fixes:
15
+ * fixed V8 ~ Node 0.8 bug: `Number('+0x1')` should be `NaN`
16
+ * fixed `Number(' 0b1\n')` case, should be `1`
17
+ * fixed `Number()` case, should be `0`
18
+
19
+ ##### 1.2.4 - 2015.11.01
20
+ * fixed `Number('0b12') -> NaN` case in the shim
21
+ * fixed V8 ~ Chromium 40- bug - `Weak(Map|Set)#{delete, get, has}` should not throw errors [#124](https://github.com/zloirock/core-js/issues/124)
22
+ * some other fixes and optimizations
23
+
24
+ ##### 1.2.3 - 2015.10.23
25
+ * fixed some problems related old V8 bug `Object('a').propertyIsEnumerable(0) // => false`, for example, `Object.assign({}, 'qwe')` from the last release
26
+ * fixed `.name` property and `Function#toString` conversion some polyfilled methods
27
+ * fixed `Math.imul` arity in Safari 8-
28
+
29
+ ##### 1.2.2 - 2015.10.18
30
+ * improved optimisations for V8
31
+ * fixed build process from external packages, [#120](https://github.com/zloirock/core-js/pull/120)
32
+ * one more `Object.{assign, values, entries}` fix for [**very** specific case](https://github.com/ljharb/proposal-object-values-entries/issues/5)
33
+
34
+ ##### 1.2.1 - 2015.10.02
35
+ * replaced fix `JSON.stringify` + `Symbol` behavior from `.toJSON` method to wrapping `JSON.stringify` - little more correct, [compat-table/642](https://github.com/kangax/compat-table/pull/642)
36
+ * fixed typo which broke tasks scheduler in WebWorkers in old FF, [#114](https://github.com/zloirock/core-js/pull/114)
37
+
38
+ ##### 1.2.0 - 2015.09.27
39
+ * added browser [`Promise` rejection hook](#unhandled-rejection-tracking), [#106](https://github.com/zloirock/core-js/issues/106)
40
+ * added correct [`IsRegExp`](http://www.ecma-international.org/ecma-262/6.0/#sec-isregexp) logic to [`String#{includes, startsWith, endsWith}`](https://github.com/zloirock/core-js/#ecmascript-6-string) and [`RegExp` constructor](https://github.com/zloirock/core-js/#ecmascript-6-regexp), `@@match` case, [example](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol/match#Disabling_the_isRegExp_check)
41
+ * updated [`String#leftPad`](https://github.com/zloirock/core-js/#ecmascript-7) [with proposal](https://github.com/ljharb/proposal-string-pad-left-right/issues/6): string filler truncated from the right side
42
+ * replaced V8 [`Object.assign`](https://github.com/zloirock/core-js/#ecmascript-6-object) - its properties order not only [incorrect](https://github.com/sindresorhus/object-assign/issues/22), it is non-deterministic and it causes some problems
43
+ * fixed behavior with deleted in getters properties for `Object.{`[`assign`](https://github.com/zloirock/core-js/#ecmascript-6-object)`, `[`entries, values`](https://github.com/zloirock/core-js/#ecmascript-7)`}`, [example](http://goo.gl/iQE01c)
44
+ * fixed [`Math.sinh`](https://github.com/zloirock/core-js/#ecmascript-6-math) with very small numbers in V8 near Chromium 38
45
+ * some other fixes and optimizations
46
+
47
+ ##### 1.1.4 - 2015.09.05
48
+ * fixed support symbols in FF34-35 [`Object.assign`](https://github.com/zloirock/core-js/#ecmascript-6-object)
49
+ * fixed [collections iterators](https://github.com/zloirock/core-js/#ecmascript-6-iterators) in FF25-26
50
+ * fixed non-generic WebKit [`Array.of`](https://github.com/zloirock/core-js/#ecmascript-6-array)
51
+ * some other fixes and optimizations
52
+
53
+ ##### 1.1.3 - 2015.08.29
54
+ * fixed support Node.js domains in [`Promise`](https://github.com/zloirock/core-js/#ecmascript-6-promise), [#103](https://github.com/zloirock/core-js/issues/103)
55
+
56
+ ##### 1.1.2 - 2015.08.28
57
+ * added `toJSON` method to [`Symbol`](https://github.com/zloirock/core-js/#ecmascript-6-symbol) polyfill and to MS Edge implementation for expected `JSON.stringify` result w/o patching this method
58
+ * replaced [`Reflect.construct`](https://github.com/zloirock/core-js/#ecmascript-6-reflect) implementations w/o correct support third argument
59
+ * fixed `global` detection with changed `document.domain` in ~IE8, [#100](https://github.com/zloirock/core-js/issues/100)
60
+
61
+ ##### 1.1.1 - 2015.08.20
62
+ * added more correct microtask implementation for [`Promise`](#ecmascript-6-promise)
63
+
64
+ ##### 1.1.0 - 2015.08.17
65
+ * updated [string padding](https://github.com/zloirock/core-js/#ecmascript-7) to [actual proposal](https://github.com/ljharb/proposal-string-pad-left-right) - renamed, minor internal changes:
66
+ * `String#lpad` -> `String#padLeft`
67
+ * `String#rpad` -> `String#padRight`
68
+ * added [string trim functions](#ecmascript-7) - [proposal](https://github.com/sebmarkbage/ecmascript-string-left-right-trim), defacto standard - required only for IE11- and fixed for some old engines:
69
+ * `String#trimLeft`
70
+ * `String#trimRight`
71
+ * [`String#trim`](https://github.com/zloirock/core-js/#ecmascript-6-string) fixed for some engines by es6 spec and moved from `es5` to single `es6` module
72
+ * splitted [`es6.object.statics-accept-primitives`](https://github.com/zloirock/core-js/#ecmascript-6-object)
73
+ * caps for `freeze`-family `Object` methods moved from `es5` to `es6` namespace and joined with [es6 wrappers](https://github.com/zloirock/core-js/#ecmascript-6-object)
74
+ * `es5` [namespace](https://github.com/zloirock/core-js/#commonjs) also includes modules, moved to `es6` namespace - you can use it as before
75
+ * increased `MessageChannel` priority in `$.task`, [#95](https://github.com/zloirock/core-js/issues/95)
76
+ * does not get `global.Symbol` on each getting iterator, if you wanna use alternative `Symbol` shim - add it before `core-js`
77
+ * [`Reflect.construct`](https://github.com/zloirock/core-js/#ecmascript-6-reflect) optimized and fixed for some cases
78
+ * simplified [`Reflect.enumerate`](https://github.com/zloirock/core-js/#ecmascript-6-reflect), see [this question](https://esdiscuss.org/topic/question-about-enumerate-and-property-decision-timing)
79
+ * some corrections in [`Math.acosh`](https://github.com/zloirock/core-js/#ecmascript-6-math)
80
+ * fixed [`Math.imul`](https://github.com/zloirock/core-js/#ecmascript-6-math) for old WebKit
81
+ * some fixes in string / RegExp [well-known symbols](https://github.com/zloirock/core-js/#ecmascript-6-regexp) logic
82
+ * some other fixes and optimizations
83
+
84
+ ##### 1.0.1 - 2015.07.31
85
+ * some fixes for final MS Edge, replaced broken native `Reflect.defineProperty`
86
+ * some minor fixes and optimizations
87
+ * changed compression `client/*.min.js` options for safe `Function#name` and `Function#length`, should be fixed [#92](https://github.com/zloirock/core-js/issues/92)
88
+
89
+ ##### 1.0.0 - 2015.07.22
90
+ * added logic for [well-known symbols](https://github.com/zloirock/core-js/#ecmascript-6-regexp):
91
+ * `Symbol.match`
92
+ * `Symbol.replace`
93
+ * `Symbol.split`
94
+ * `Symbol.search`
95
+ * actualized and optimized work with iterables:
96
+ * optimized [`Map`, `Set`, `WeakMap`, `WeakSet` constructors](https://github.com/zloirock/core-js/#ecmascript-6-collections), [`Promise.all`, `Promise.race`](https://github.com/zloirock/core-js/#ecmascript-6-promise) for default `Array Iterator`
97
+ * optimized [`Array.from`](https://github.com/zloirock/core-js/#ecmascript-6-array) for default `Array Iterator`
98
+ * added [`core.getIteratorMethod`](https://github.com/zloirock/core-js/#ecmascript-6-iterators) helper
99
+ * uses enumerable properties in shimmed instances - collections, iterators, etc for optimize performance
100
+ * added support native constructors to [`Reflect.construct`](https://github.com/zloirock/core-js/#ecmascript-6-reflect) with 2 arguments
101
+ * added support native constructors to [`Function#bind`](https://github.com/zloirock/core-js/#ecmascript-5) shim with `new`
102
+ * removed obsolete `.clear` methods native [`Weak`-collections](https://github.com/zloirock/core-js/#ecmascript-6-collections)
103
+ * maximum modularity, reduced minimal custom build size, separated into submodules:
104
+ * [`es6.reflect`](https://github.com/zloirock/core-js/#ecmascript-6-reflect)
105
+ * [`es6.regexp`](https://github.com/zloirock/core-js/#ecmascript-6-regexp)
106
+ * [`es6.math`](https://github.com/zloirock/core-js/#ecmascript-6-math)
107
+ * [`es6.number`](https://github.com/zloirock/core-js/#ecmascript-6-number)
108
+ * [`es7.object.to-array`](https://github.com/zloirock/core-js/#ecmascript-7)
109
+ * [`core.object`](https://github.com/zloirock/core-js/#object)
110
+ * [`core.string`](https://github.com/zloirock/core-js/#escaping-html)
111
+ * [`core.iter-helpers`](https://github.com/zloirock/core-js/#ecmascript-6-iterators)
112
+ * internal modules (`$`, `$.iter`, etc)
113
+ * many other optimizations
114
+ * final cleaning non-standard features
115
+ * moved `$for` to [separate library](https://github.com/zloirock/forof). This work for syntax - `for-of` loop and comprehensions
116
+ * moved `Date#{format, formatUTC}` to [separate library](https://github.com/zloirock/dtf). Standard way for this - `ECMA-402`
117
+ * removed `Math` methods from `Number.prototype`. Slight sugar for simple `Math` methods calling
118
+ * removed `{Array#, Array, Dict}.turn`
119
+ * removed `core.global`
120
+ * uses `ToNumber` instead of `ToLength` in [`Number Iterator`](https://github.com/zloirock/core-js/#number-iterator), `Array.from(2.5)` will be `[0, 1, 2]` instead of `[0, 1]`
121
+ * fixed [#85](https://github.com/zloirock/core-js/issues/85) - invalid `Promise` unhandled rejection message in nested `setTimeout`
122
+ * fixed [#86](https://github.com/zloirock/core-js/issues/86) - support FF extensions
123
+ * fixed [#89](https://github.com/zloirock/core-js/issues/89) - behavior `Number` constructor in strange case
124
+
125
+ ##### 0.9.18 - 2015.06.17
126
+ * removed `/` from [`RegExp.escape`](https://github.com/zloirock/core-js/#ecmascript-7) escaped characters
127
+
128
+ ##### 0.9.17 - 2015.06.14
129
+ * updated [`RegExp.escape`](https://github.com/zloirock/core-js/#ecmascript-7) to the [latest proposal](https://github.com/benjamingr/RexExp.escape)
130
+ * fixed conflict with webpack dev server + IE buggy behavior
131
+
132
+ ##### 0.9.16 - 2015.06.11
133
+ * more correct order resolving thenable in [`Promise`](https://github.com/zloirock/core-js/#ecmascript-6-promise) polyfill
134
+ * uses polyfill instead of [buggy V8 `Promise`](https://github.com/zloirock/core-js/issues/78)
135
+
136
+ ##### 0.9.15 - 2015.06.09
137
+ * [collections](https://github.com/zloirock/core-js/#ecmascript-6-collections) from `library` version return wrapped native instances
138
+ * fixed collections prototype methods in `library` version
139
+ * optimized [`Math.hypot`](https://github.com/zloirock/core-js/#ecmascript-6-math)
140
+
141
+ ##### 0.9.14 - 2015.06.04
142
+ * updated [`Promise.resolve` behavior](https://esdiscuss.org/topic/fixing-promise-resolve)
143
+ * added fallback for IE11 buggy `Object.getOwnPropertyNames` + iframe
144
+ * some other fixes
145
+
146
+ ##### 0.9.13 - 2015.05.25
147
+ * added fallback for [`Symbol` polyfill](https://github.com/zloirock/core-js/#ecmascript-6-symbol) for old Android
148
+ * some other fixes
149
+
150
+ ##### 0.9.12 - 2015.05.24
151
+ * different instances `core-js` should use / recognize the same symbols
152
+ * some fixes
153
+
154
+ ##### 0.9.11 - 2015.05.18
155
+ * simplified [custom build](https://github.com/zloirock/core-js/#custom-build)
156
+ * add custom build js api
157
+ * added `grunt-cli` to `devDependencies` for `npm run grunt`
158
+ * some fixes
159
+
160
+ ##### 0.9.10 - 2015.05.16
161
+ * wrapped `Function#toString` for correct work wrapped methods / constructors with methods similar to the [`lodash` `isNative`](https://github.com/lodash/lodash/issues/1197)
162
+ * added proto versions of methods to export object in `default` version for consistency with `library` version
163
+
164
+ ##### 0.9.9 - 2015.05.14
165
+ * wrapped `Object#propertyIsEnumerable` for [`Symbol` polyfill](https://github.com/zloirock/core-js/#ecmascript-6-symbol)
166
+ * [added proto versions of methods to `library` for ES7 bind syntax](https://github.com/zloirock/core-js/issues/65)
167
+ * some other fixes
168
+
169
+ ##### 0.9.8 - 2015.05.12
170
+ * fixed [`Math.hypot`](https://github.com/zloirock/core-js/#ecmascript-6-math) with negative arguments
171
+ * added `Object#toString.toString` as fallback for [`lodash` `isNative`](https://github.com/lodash/lodash/issues/1197)
172
+
173
+ ##### 0.9.7 - 2015.05.07
174
+ * added [support DOM collections](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/slice#Streamlining_cross-browser_behavior) to IE8- `Array#slice`
175
+
176
+ ##### 0.9.6 - 2015.05.01
177
+ * added [`String#lpad`, `String#rpad`](https://github.com/zloirock/core-js/#ecmascript-7)
178
+
179
+ ##### 0.9.5 - 2015.04.30
180
+ * added cap for `Function#@@hasInstance`
181
+ * some fixes and optimizations
182
+
183
+ ##### 0.9.4 - 2015.04.27
184
+ * fixed `RegExp` constructor
185
+
186
+ ##### 0.9.3 - 2015.04.26
187
+ * some fixes and optimizations
188
+
189
+ ##### 0.9.2 - 2015.04.25
190
+ * more correct [`Promise`](https://github.com/zloirock/core-js/#ecmascript-6-promise) unhandled rejection tracking and resolving / rejection priority
191
+
192
+ ##### 0.9.1 - 2015.04.25
193
+ * fixed `__proto__`-based [`Promise`](https://github.com/zloirock/core-js/#ecmascript-6-promise) subclassing in some environments
194
+
195
+ ##### 0.9.0 - 2015.04.24
196
+ * added correct [symbols](https://github.com/zloirock/core-js/#ecmascript-6-symbol) descriptors
197
+ * fixed behavior `Object.{assign, create, defineProperty, defineProperties, getOwnPropertyDescriptor, getOwnPropertyDescriptors}` with symbols
198
+ * added [single entry points](https://github.com/zloirock/core-js/#commonjs) for `Object.{create, defineProperty, defineProperties}`
199
+ * added [`Map#toJSON`](https://github.com/zloirock/core-js/#ecmascript-7)
200
+ * removed non-standard methods `Object#[_]` and `Function#only` - they solves syntax problems, but now in compilers available arrows and ~~in near future will be available~~ [available](http://babeljs.io/blog/2015/05/14/function-bind/) [bind syntax](https://github.com/zenparsing/es-function-bind)
201
+ * removed non-standard undocumented methods `Symbol.{pure, set}`
202
+ * some fixes and internal changes
203
+
204
+ ##### 0.8.4 - 2015.04.18
205
+ * uses `webpack` instead of `browserify` for browser builds - more compression-friendly result
206
+
207
+ ##### 0.8.3 - 2015.04.14
208
+ * fixed `Array` statics with single entry points
209
+
210
+ ##### 0.8.2 - 2015.04.13
211
+ * [`Math.fround`](https://github.com/zloirock/core-js/#ecmascript-6-math) now also works in IE9-
212
+ * added [`Set#toJSON`](https://github.com/zloirock/core-js/#ecmascript-7)
213
+ * some optimizations and fixes
214
+
215
+ ##### 0.8.1 - 2015.04.03
216
+ * fixed `Symbol.keyFor`
217
+
218
+ ##### 0.8.0 - 2015.04.02
219
+ * changed [CommonJS API](https://github.com/zloirock/core-js/#commonjs)
220
+ * splitted and renamed some modules
221
+ * added support ES3 environment (ES5 polyfill) to **all** default versions - size increases slightly (+ ~4kb w/o gzip), many issues disappear, if you don't need it - [simply include only required namespaces / features / modules](https://github.com/zloirock/core-js/#commonjs)
222
+ * removed [abstract references](https://github.com/zenparsing/es-abstract-refs) support - proposal has been superseded =\
223
+ * [`$for.isIterable` -> `core.isIterable`, `$for.getIterator` -> `core.getIterator`](https://github.com/zloirock/core-js/#ecmascript-6-iterators), temporary available in old namespace
224
+ * fixed iterators support in v8 `Promise.all` and `Promise.race`
225
+ * many other fixes
226
+
227
+ ##### 0.7.2 - 2015.03.09
228
+ * some fixes
229
+
230
+ ##### 0.7.1 - 2015.03.07
231
+ * some fixes
232
+
233
+ ##### 0.7.0 - 2015.03.06
234
+ * rewritten and splitted into [CommonJS modules](https://github.com/zloirock/core-js/#commonjs)
235
+
236
+ ##### 0.6.1 - 2015.02.24
237
+ * fixed support [`Object.defineProperty`](https://github.com/zloirock/core-js/#ecmascript-5) with accessors on DOM elements on IE8
238
+
239
+ ##### 0.6.0 - 2015.02.23
240
+ * added support safe closing iteration - calling `iterator.return` on abort iteration, if it exists
241
+ * added basic support [`Promise`](https://github.com/zloirock/core-js/#ecmascript-6-promise) unhandled rejection tracking in shim
242
+ * added [`Object.getOwnPropertyDescriptors`](https://github.com/zloirock/core-js/#ecmascript-7)
243
+ * removed `console` cap - creates too many problems - you can use [`core.log`](https://github.com/zloirock/core-js/#console) module as that
244
+ * restructuring [namespaces](https://github.com/zloirock/core-js/#custom-build)
245
+ * some fixes
246
+
247
+ ##### 0.5.4 - 2015.02.15
248
+ * some fixes
249
+
250
+ ##### 0.5.3 - 2015.02.14
251
+ * added [support binary and octal literals](https://github.com/zloirock/core-js/#ecmascript-6-number) to `Number` constructor
252
+ * added [`Date#toISOString`](https://github.com/zloirock/core-js/#ecmascript-5)
253
+
254
+ ##### 0.5.2 - 2015.02.10
255
+ * some fixes
256
+
257
+ ##### 0.5.1 - 2015.02.09
258
+ * some fixes
259
+
260
+ ##### 0.5.0 - 2015.02.08
261
+ * systematization of modules
262
+ * splitted [`es6` module](https://github.com/zloirock/core-js/#ecmascript-6)
263
+ * splitted [`console` module](https://github.com/zloirock/core-js/#console): `web.console` - only cap for missing methods, `core.log` - bound methods & additional features
264
+ * added [`delay` method](https://github.com/zloirock/core-js/#delay)
265
+ * some fixes
266
+
267
+ ##### 0.4.10 - 2015.01.28
268
+ * [`Object.getOwnPropertySymbols`](https://github.com/zloirock/core-js/#ecmascript-6-symbol) polyfill returns array of wrapped keys
269
+
270
+ ##### 0.4.9 - 2015.01.27
271
+ * FF20-24 fix
272
+
273
+ ##### 0.4.8 - 2015.01.25
274
+ * some [collections](https://github.com/zloirock/core-js/#ecmascript-6-collections) fixes
275
+
276
+ ##### 0.4.7 - 2015.01.25
277
+ * added support frozen objects as [collections](https://github.com/zloirock/core-js/#ecmascript-6-collections) keys
278
+
279
+ ##### 0.4.6 - 2015.01.21
280
+ * added [`Object.getOwnPropertySymbols`](https://github.com/zloirock/core-js/#ecmascript-6-symbol)
281
+ * added [`NodeList.prototype[@@iterator]`](https://github.com/zloirock/core-js/#ecmascript-6-iterators)
282
+ * added basic `@@species` logic - getter in native constructors
283
+ * removed `Function#by`
284
+ * some fixes
285
+
286
+ ##### 0.4.5 - 2015.01.16
287
+ * some fixes
288
+
289
+ ##### 0.4.4 - 2015.01.11
290
+ * enabled CSP support
291
+
292
+ ##### 0.4.3 - 2015.01.10
293
+ * added `Function` instances `name` property for IE9+
294
+
295
+ ##### 0.4.2 - 2015.01.10
296
+ * `Object` static methods accept primitives
297
+ * `RegExp` constructor can alter flags (IE9+)
298
+ * added `Array.prototype[Symbol.unscopables]`
299
+
300
+ ##### 0.4.1 - 2015.01.05
301
+ * some fixes
302
+
303
+ ##### 0.4.0 - 2015.01.03
304
+ * added [`es6.reflect`](https://github.com/zloirock/core-js/#ecmascript-6-reflect) module:
305
+ * added `Reflect.apply`
306
+ * added `Reflect.construct`
307
+ * added `Reflect.defineProperty`
308
+ * added `Reflect.deleteProperty`
309
+ * added `Reflect.enumerate`
310
+ * added `Reflect.get`
311
+ * added `Reflect.getOwnPropertyDescriptor`
312
+ * added `Reflect.getPrototypeOf`
313
+ * added `Reflect.has`
314
+ * added `Reflect.isExtensible`
315
+ * added `Reflect.preventExtensions`
316
+ * added `Reflect.set`
317
+ * added `Reflect.setPrototypeOf`
318
+ * `core-js` methods now can use external `Symbol.iterator` polyfill
319
+ * some fixes
320
+
321
+ ##### 0.3.3 - 2014.12.28
322
+ * [console cap](https://github.com/zloirock/core-js/#console) excluded from node.js default builds
323
+
324
+ ##### 0.3.2 - 2014.12.25
325
+ * added cap for [ES5](https://github.com/zloirock/core-js/#ecmascript-5) freeze-family methods
326
+ * fixed `console` bug
327
+
328
+ ##### 0.3.1 - 2014.12.23
329
+ * some fixes
330
+
331
+ ##### 0.3.0 - 2014.12.23
332
+ * Optimize [`Map` & `Set`](https://github.com/zloirock/core-js/#ecmascript-6-collections):
333
+ * use entries chain on hash table
334
+ * fast & correct iteration
335
+ * iterators moved to [`es6`](https://github.com/zloirock/core-js/#ecmascript-6) and [`es6.collections`](https://github.com/zloirock/core-js/#ecmascript-6-collections) modules
336
+
337
+ ##### 0.2.5 - 2014.12.20
338
+ * `console` no longer shortcut for `console.log` (compatibility problems)
339
+ * some fixes
340
+
341
+ ##### 0.2.4 - 2014.12.17
342
+ * better compliance of ES6
343
+ * added [`Math.fround`](https://github.com/zloirock/core-js/#ecmascript-6-math) (IE10+)
344
+ * some fixes
345
+
346
+ ##### 0.2.3 - 2014.12.15
347
+ * [Symbols](https://github.com/zloirock/core-js/#ecmascript-6-symbol):
348
+ * added option to disable addition setter to `Object.prototype` for Symbol polyfill:
349
+ * added `Symbol.useSimple`
350
+ * added `Symbol.useSetter`
351
+ * added cap for well-known Symbols:
352
+ * added `Symbol.hasInstance`
353
+ * added `Symbol.isConcatSpreadable`
354
+ * added `Symbol.match`
355
+ * added `Symbol.replace`
356
+ * added `Symbol.search`
357
+ * added `Symbol.species`
358
+ * added `Symbol.split`
359
+ * added `Symbol.toPrimitive`
360
+ * added `Symbol.unscopables`
361
+
362
+ ##### 0.2.2 - 2014.12.13
363
+ * added [`RegExp#flags`](https://github.com/zloirock/core-js/#ecmascript-6-regexp) ([December 2014 Draft Rev 29](http://wiki.ecmascript.org/doku.php?id=harmony:specification_drafts#december_6_2014_draft_rev_29))
364
+ * added [`String.raw`](https://github.com/zloirock/core-js/#ecmascript-6-string)
365
+
366
+ ##### 0.2.1 - 2014.12.12
367
+ * repair converting -0 to +0 in [native collections](https://github.com/zloirock/core-js/#ecmascript-6-collections)
368
+
369
+ ##### 0.2.0 - 2014.12.06
370
+ * added [`es7.proposals`](https://github.com/zloirock/core-js/#ecmascript-7) and [`es7.abstract-refs`](https://github.com/zenparsing/es-abstract-refs) modules
371
+ * added [`String#at`](https://github.com/zloirock/core-js/#ecmascript-7)
372
+ * added real [`String Iterator`](https://github.com/zloirock/core-js/#ecmascript-6-iterators), older versions used Array Iterator
373
+ * added abstract references support:
374
+ * added `Symbol.referenceGet`
375
+ * added `Symbol.referenceSet`
376
+ * added `Symbol.referenceDelete`
377
+ * added `Function#@@referenceGet`
378
+ * added `Map#@@referenceGet`
379
+ * added `Map#@@referenceSet`
380
+ * added `Map#@@referenceDelete`
381
+ * added `WeakMap#@@referenceGet`
382
+ * added `WeakMap#@@referenceSet`
383
+ * added `WeakMap#@@referenceDelete`
384
+ * added `Dict.{...methods}[@@referenceGet]`
385
+ * removed deprecated `.contains` methods
386
+ * some fixes
387
+
388
+ ##### 0.1.5 - 2014.12.01
389
+ * added [`Array#copyWithin`](https://github.com/zloirock/core-js/#ecmascript-6-array)
390
+ * added [`String#codePointAt`](https://github.com/zloirock/core-js/#ecmascript-6-string)
391
+ * added [`String.fromCodePoint`](https://github.com/zloirock/core-js/#ecmascript-6-string)
392
+
393
+ ##### 0.1.4 - 2014.11.27
394
+ * added [`Dict.mapPairs`](https://github.com/zloirock/core-js/#dict)
395
+
396
+ ##### 0.1.3 - 2014.11.20
397
+ * [TC39 November meeting](https://github.com/rwaldron/tc39-notes/tree/master/es6/2014-11):
398
+ * [`.contains` -> `.includes`](https://github.com/rwaldron/tc39-notes/blob/master/es6/2014-11/nov-18.md#51--44-arrayprototypecontains-and-stringprototypecontains)
399
+ * `String#contains` -> [`String#includes`](https://github.com/zloirock/core-js/#ecmascript-6-string)
400
+ * `Array#contains` -> [`Array#includes`](https://github.com/zloirock/core-js/#ecmascript-7)
401
+ * `Dict.contains` -> [`Dict.includes`](https://github.com/zloirock/core-js/#dict)
402
+ * [removed `WeakMap#clear`](https://github.com/rwaldron/tc39-notes/blob/master/es6/2014-11/nov-19.md#412-should-weakmapweakset-have-a-clear-method-markm)
403
+ * [removed `WeakSet#clear`](https://github.com/rwaldron/tc39-notes/blob/master/es6/2014-11/nov-19.md#412-should-weakmapweakset-have-a-clear-method-markm)
404
+
405
+ ##### 0.1.2 - 2014.11.19
406
+ * `Map` & `Set` bug fix
407
+
408
+ ##### 0.1.1 - 2014.11.18
387
409
  * public release