UNPKG

pragmatic-fp-ts

Version:

Opinionated functional programming library with easy use in mind

10 lines (9 loc) 266 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.identical = void 0; function identical(a, b) { if (arguments.length === 1) return (_b) => identical(a, _b); return Object.is(a, b); } exports.identical = identical;