merge: Add lower (#863)

This commit is contained in:
YATIN KATHURIA
2021-12-04 11:01:58 +05:30
committed by GitHub
parent 62b151eb69
commit 4c27e1534e
2 changed files with 37 additions and 0 deletions

View File

@ -0,0 +1,9 @@
import { lower } from '../Lower'
describe('Lower', () => {
it('return uppercase strings', () => {
expect(lower('hello')).toBe('hello')
expect(lower('WORLD')).toBe('world')
expect(lower('hello_WORLD')).toBe('hello_world')
})
})