UNPKG

@mattseligman/lotide

Version:

Lotide is a mini clone of the Lodash Library to practice crating a personal npm package. It's like lodash, but without all that extra stuff. Just the things you need to start your project.

12 lines (9 loc) 192 B
// FUNCTION IMPLEMENTATION const assertEqual = function(actual, expected) { if (actual === expected) { return true; } else { return false; } }; module.exports = assertEqual;