mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
10 lines
329 B
TypeScript
10 lines
329 B
TypeScript
/// <reference path="lower-case.d.ts" />
|
||
|
||
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"
|