fix(core): update

This commit is contained in:
2019-10-10 17:28:23 +02:00
parent 979375f08d
commit 55a5948a51
5 changed files with 695 additions and 571 deletions

8
test/test.type.ts Normal file
View File

@ -0,0 +1,8 @@
import { tap, expect } from '@pushrocks/tapbundle';
import * as smartstring from '../ts';
tap.test('should state valuid utf8', async () => {
expect(smartstring.type.isUtf8('hithere')).to.be.true;
});
tap.start();