- Added
Array#find
,Array#findIndex
,Object.assign
,Object.mixin
,Math.cbrt
,String.fromCodePoint
,String#codePointAt
. - Removed
Object.isnt
. - Made Math functions fully conform spec.
- Added
Map#keys
,Map#values
,Map#size
,Set#size
,Set#clear
.
- Made
String#startsWith
,String#endsWith
fully conform spec.
- Removed
String#toArray
andObject.isObject
as per spec updates.
- Made Map and Set follow Spidermonkey implementation instead of V8.
var m = Map(); m.set('key', void 0); m.has('key');
now gives true.
- Added Number.MAX_INTEGER, Number.EPSILON, Number.parseInt, Number.parseFloat, Number.prototype.clz, Object.isObject.
- Fixed boundary checking in Number.isInteger.
- Added Math.log10, Math.log2, Math.log1p, Math.expm1, Math.cosh, Math.sinh, Math.tanh, Math.acosh, Math.asinh, Math.atanh, Math.hypot, Math.trunc.
- Added IE8 support.
- Added Number.isFinite() and Object.isnt().
- Fixed a bug in String#endsWith().
- Added browser support.
- Added tests.
- Added Math.sign().
- Initial release