UNPKG

mout

Version:

Modular Utilities

11 lines (8 loc) 147 B
import is from './is'; /** * Check if both values are not identical/egal */ function isnt(x, y) { return !is(x, y); } export default isnt;