blob: ecc04e312f0033354b2672a01b68fe8beac74ac9 [file] [log] [blame] [edit]
import { objectIs } from './_internals/objectIs.js'
export function identical(a, b){
if (arguments.length === 1) return _b => identical(a, _b)
return objectIs(a, b)
}