'use strict';varGetIntrinsic=require('../GetIntrinsic');var$TypeError=GetIntrinsic('%TypeError%');varSameValue=require('./SameValue');// https://www.ecma-international.org/ecma-262/7.0/#sec-samevaluenonnumbermodule.exports=functionSameValueNonNumber(x,y){if(typeofx==='number'||typeofx!==typeofy){thrownew$TypeError('SameValueNonNumber requires two non-number values of the same type.');}returnSameValue(x,y);};