UNPKG
strility
Version:
latest (1.3.1)
1.3.1
1.3.0
1.2.0
1.1.0
1.0.0
Strility is a string manipulation library
github.com/bjarneo/strility
bjarneo/strility
strility
/
tests
/
underscore.test.js
12 lines
(8 loc)
•
284 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
/*
'use strict'
; const { strictEqual } =
require
(
'assert'
); const { underscore } =
require
(
'../.'
); describe(
'#underscore'
, () => { it(
'shouldBeUnderscored-between'
, () => strictEqual(underscore(
'should BeUnderscored-between'
),
'should_be_underscored_between'
)); }); */