mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-08-13 05:20:25 +00:00
9 lines
288 B
TypeScript
9 lines
288 B
TypeScript
|
||
import lowerCase = require('lower-case');
|
||
|
||
console.log(lowerCase(null)); // => ""
|
||
console.log(lowerCase('STRING')); // => "string"
|
||
console.log(lowerCase('string', 'tr')); // => "strıng"
|
||
|
||
console.log(lowerCase({ toString: function() { return 'TEST' } })); // => "test"
|