Socket
Socket
Sign inDemoInstall

upper-case

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

upper-case - npm Package Compare versions

Comparing version 1.1.3 to 2.0.0

dist.es2015/index.d.ts

89

package.json
{
"name": "upper-case",
"version": "1.1.3",
"description": "Upper case a string",
"main": "upper-case.js",
"typings": "upper-case.d.ts",
"version": "2.0.0",
"description": "Transforms the string to upper case",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"module": "dist.es2015/index.js",
"sideEffects": false,
"jsnext:main": "dist.es2015/index.js",
"files": [
"upper-case.js",
"upper-case.d.ts",
"dist/",
"dist.es2015/",
"LICENSE"
],
"scripts": {
"lint": "standard",
"test-std": "mocha -- -R spec --bail",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- -R spec --bail",
"test": "npm run lint && npm run test-cov"
"lint": "tslint \"src/**/*\" --project tsconfig.json",
"build": "rimraf dist/ dist.es2015/ && tsc && tsc -P tsconfig.es2015.json",
"specs": "jest --coverage",
"test": "npm run build && npm run lint && npm run specs && npm run size",
"size": "size-limit",
"prepare": "npm run build"
},
"standard": {
"ignore": [
"coverage/**",
"node_modules/**",
"bower_components/**"
]
},
"repository": {
"type": "git",
"url": "git://github.com/blakeembrey/upper-case.git"
"url": "git://github.com/blakeembrey/change-case.git"
},
"keywords": [
"cases",
"upper",
"uppercase",
"case"
"case",
"upcase",
"locale",
"convert",
"transform"
],

@@ -42,11 +42,44 @@ "author": {

"bugs": {
"url": "https://github.com/blakeembrey/upper-case/issues"
"url": "https://github.com/blakeembrey/change-case/issues"
},
"homepage": "https://github.com/blakeembrey/upper-case",
"homepage": "https://github.com/blakeembrey/change-case/tree/master/packages/upper-case#readme",
"size-limit": [
{
"path": "dist/index.js",
"limit": "250 B"
}
],
"jest": {
"roots": [
"<rootDir>/src/"
],
"transform": {
"\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(tsx?|jsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"istanbul": "^0.3.5",
"mocha": "^2.1.0",
"pre-commit": "^1.0.2",
"standard": "^2.4.5"
}
"@size-limit/preset-small-lib": "^2.2.1",
"@types/jest": "^24.0.23",
"@types/node": "^12.12.14",
"jest": "^24.9.0",
"rimraf": "^3.0.0",
"ts-jest": "^24.2.0",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^9.0.0",
"typescript": "^3.7.2"
},
"gitHead": "55911ca17c2e0c964b9b84143e14e29ffc9ff499"
}

@@ -5,9 +5,6 @@ # Upper Case

[![NPM downloads][downloads-image]][downloads-url]
[![Build status][travis-image]][travis-url]
[![Test coverage][coveralls-image]][coveralls-url]
[![Bundle size][bundlephobia-image]][bundlephobia-url]
Upper case a string.
> Transforms the string to upper case.
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

@@ -22,15 +19,9 @@

```js
var upperCase = require('upper-case')
import { upperCase, localeUpperCase } from "upper-case";
upperCase(null) //=> ""
upperCase('string') //=> "STRING"
upperCase('string', 'tr') //=> "STRİNG"
upperCase("string"); //=> "STRING"
upperCase({ toString: function () { return 'test' } }) //=> "TEST"
localeUpperCase("string", "tr"); //=> "STRİNG"
```
## Typings
Includes a [TypeScript definition](upper-case.d.ts).
## License

@@ -44,5 +35,3 @@

[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
[bundlephobia-image]: https://img.shields.io/bundlephobia/minzip/upper-case.svg
[bundlephobia-url]: https://bundlephobia.com/result?p=upper-case
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc