UNPKG

@tdb/util

Version:
10 lines (8 loc) 242 B
import { expect } from 'chai'; import * as str from '.'; describe('str.convert', () => { it('converts using `string` utility', () => { const res = str.convert.dasherize('helloThere'); expect(res).to.equal('hello-there'); }); });