lepu-test-platform-web/node_modules/upper-case
zhangbo db3ebd0df0 把之前百度云的代码移植过来 2024-01-03 15:23:47 +08:00
..
LICENSE 把之前百度云的代码移植过来 2024-01-03 15:23:47 +08:00
README.md 把之前百度云的代码移植过来 2024-01-03 15:23:47 +08:00
package.json 把之前百度云的代码移植过来 2024-01-03 15:23:47 +08:00
upper-case.d.ts 把之前百度云的代码移植过来 2024-01-03 15:23:47 +08:00
upper-case.js 把之前百度云的代码移植过来 2024-01-03 15:23:47 +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