mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-05 09:27:49 +00:00
wip: migrate to bun
This commit is contained in:
10
test/lowerFirst.spec.ts
Normal file
10
test/lowerFirst.spec.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
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');
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user