mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-23 04:49:15 +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
|