mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-23 21:00:01 +08:00
8 lines
235 B
TypeScript
8 lines
235 B
TypeScript
/// <reference path="is-lower-case.d.ts" />
|
|
|
|
import isLowerCase = require('is-lower-case')
|
|
|
|
console.log(isLowerCase('string')); // => true
|
|
console.log(isLowerCase('String')); // => false
|
|
console.log(isLowerCase('STRING')); // => false
|