'use strict';varES2015=require('./es2015');varassign=require('./helpers/assign');varES2016=assign(assign({},ES2015),{// https://github.com/tc39/ecma262/pull/60SameValueNonNumber:functionSameValueNonNumber(x,y){if(typeofx==='number'||typeofx!==typeofy){thrownewTypeError('SameValueNonNumber requires two non-number values of the same type.');}returnthis.SameValue(x,y);}});module.exports=ES2016;