Skip to content
Permalink
9bfb9ba527
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
16 lines (13 sloc) 429 Bytes
'use strict';
var SameValueNonNumber = require('./SameValueNonNumber');
var Type = require('./Type');
var NumberEqual = require('./Number/equal');
// https://262.ecma-international.org/14.0/#sec-isstrictlyequal
module.exports = function IsStrictlyEqual(x, y) {
var xType = Type(x);
var yType = Type(y);
if (xType !== yType) {
return false;
}
return xType === 'Number' ? NumberEqual(x, y) : SameValueNonNumber(x, y);
};