UNPKG

conductor

Version:

A modern & functional JavaScript utility library

8 lines (6 loc) 191 B
const toLowerCase = require('../src/toLowerCase') describe('toLowerCase', () => { it('should convert a string to lowercase', () => { expect(toLowerCase('HeLlO')).toBe('hello') }) })