1
0
Fork 0
management/front/dkha-web-sz-main/node_modules/upper-case
詹力 1a19ec897f 删除无关模块 2024-01-16 21:26:16 +08:00
..
LICENSE i4 2023-12-18 13:12:25 +08:00
README.md i4 2023-12-18 13:12:25 +08:00
package.json 删除无关模块 2024-01-16 21:26:16 +08:00
upper-case.d.ts i4 2023-12-18 13:12:25 +08:00
upper-case.js i4 2023-12-18 13:12:25 +08:00

README.md

Upper Case

NPM version NPM downloads Build status Test coverage

Upper case a string.

Supports Unicode (non-ASCII characters) and non-string entities, such as objects with a toString property, numbers and booleans. Empty values (null and undefined) will result in an empty string.

Installation

npm install upper-case --save

Usage

var upperCase = require('upper-case')

upperCase(null)           //=> ""
upperCase('string')       //=> "STRING"
upperCase('string', 'tr') //=> "STRİNG"

upperCase({ toString: function () { return 'test' } }) //=> "TEST"

Typings

Includes a TypeScript definition.

License

MIT