UNPKG

219 BJavaScriptView Raw
1describe('toLowerFirst', function(){
2
3 var toLowerFirst = require('../index').toLowerFirst
4
5 it('should work well', function(){
6
7 toLowerFirst('ABc')
8 .should
9 .equal('aBc')
10
11 })
12})
\No newline at end of file