fix(core): update

This commit is contained in:
2020-07-24 11:37:11 +00:00
commit 68e696d152
13 changed files with 11286 additions and 0 deletions

12
test/test.ts Normal file
View File

@ -0,0 +1,12 @@
import { expect, tap } from '@pushrocks/tapbundle';
import * as smartobject from '../ts/index';
tap.test('first test', async () => {
const result = smartobject.compareObjects(
{ thisIsEq: 'wow', thisIsDeepEq: { deeper: 'sodeep' } },
{ thisIsEq: 'wow', thisIsDeepEq: { deeper: 'sodeep' }, hey: 'there' }
);
console.log(result);
});
tap.start();