Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.188.80.46
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp-musonza /
node_modules /
upper-case /
Delete
Unzip
Name
Size
Permission
Date
Action
LICENSE
1.08
KB
-rw-r--r--
2015-12-16 00:24
README.md
1.33
KB
-rw-r--r--
2015-12-16 00:25
package.json
1.79
KB
-rw-r--r--
2021-02-04 21:24
upper-case.d.ts
90
B
-rw-r--r--
2015-12-16 00:25
upper-case.js
953
B
-rw-r--r--
2015-12-16 00:24
Save
Rename
# Upper Case [![NPM version][npm-image]][npm-url] [![NPM downloads][downloads-image]][downloads-url] [![Build status][travis-image]][travis-url] [![Test coverage][coveralls-image]][coveralls-url] 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 ```js 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](upper-case.d.ts). ## License MIT [npm-image]: https://img.shields.io/npm/v/upper-case.svg?style=flat [npm-url]: https://npmjs.org/package/upper-case [downloads-image]: https://img.shields.io/npm/dm/upper-case.svg?style=flat [downloads-url]: https://npmjs.org/package/upper-case [travis-image]: https://img.shields.io/travis/blakeembrey/upper-case.svg?style=flat [travis-url]: https://travis-ci.org/blakeembrey/upper-case [coveralls-image]: https://img.shields.io/coveralls/blakeembrey/upper-case.svg?style=flat [coveralls-url]: https://coveralls.io/r/blakeembrey/upper-case?branch=master