mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-01-31 23:37:49 +00:00
11 lines
350 B
TypeScript
11 lines
350 B
TypeScript
import assert from 'node:assert';
|
|
import lowerFirst from '../src/lowerFirst';
|
|
|
|
describe('lowerFirst', () => {
|
|
it('should lowercase only the first character', () => {
|
|
assert.strictEqual(lowerFirst('fred'), 'fred');
|
|
assert.strictEqual(lowerFirst('Fred'), 'fred');
|
|
assert.strictEqual(lowerFirst('FRED'), 'fRED');
|
|
});
|
|
});
|