UNPKG

@gleefullychill/lotide

Version:

A library based off of lodash for a student project

13 lines (9 loc) 315 B
const eqArrays = require('./eqArrays'); const assertArraysEqual = function(_first, _second) { (eqArrays(_first, _second) ? console.log(`🥰🥰 Assertion Passed: ${_first} === ${_second}`) : console.log(`😱Assertion Failed: ${_first} !== ${_second}`) ); }; module.exports = assertArraysEqual;