@tdb/util
Version:
Shared helpers and utilities.
11 lines • 384 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var chai_1 = require("chai");
var str = require(".");
describe('str.convert', function () {
it('converts using `string` utility', function () {
var res = str.convert.dasherize('helloThere');
chai_1.expect(res).to.equal('hello-there');
});
});
//# sourceMappingURL=convert.test.js.map