mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-20 16:14:57 +08:00
8 lines
235 B
TypeScript
8 lines
235 B
TypeScript
/// <reference path="is-upper-case.d.ts" />
|
|
|
|
import isUpperCase = require('is-upper-case')
|
|
|
|
console.log(isUpperCase('STRING')); // => true
|
|
console.log(isUpperCase('String')); // => false
|
|
console.log(isUpperCase('string')); // => false
|