fix(core): update

This commit is contained in:
2021-03-22 02:33:01 +00:00
parent cd2d162738
commit 5732f0e2cd
5 changed files with 2486 additions and 1685 deletions

View File

@ -9,4 +9,9 @@ tap.test('first test', async () => {
console.log(result);
});
tap.test('should fast deep equal objects', async () => {
expect(smartobject.fastDeepEqual({hello: 'yes'}, {hello: 'yes'})).to.be.true;
expect(smartobject.fastDeepEqual({hello: 'yes'}, {hello: 3})).to.be.false;
});
tap.start();