Socket
Socket
Sign inDemoInstall

pascal-case

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pascal-case - npm Package Compare versions

Comparing version 1.1.0 to 1.1.1

12

package.json
{
"name": "pascal-case",
"version": "1.1.0",
"version": "1.1.1",
"description": "Pascal case a string",
"main": "pascal-case.js",
"scripts": {
"test": "istanbul cover _mocha -- -R spec"
"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"
},

@@ -33,4 +36,5 @@ "files": [

"istanbul": "^0.3.0",
"mocha": "^1.18.2",
"pre-commit": "0.0.9"
"mocha": "^2.2.1",
"pre-commit": "^1.0.6",
"standard": "^3.3.0"
},

@@ -37,0 +41,0 @@ "dependencies": {

@@ -1,3 +0,3 @@

var camelCase = require('camel-case');
var upperCaseFirst = require('upper-case-first');
var camelCase = require('camel-case')
var upperCaseFirst = require('upper-case-first')

@@ -12,3 +12,3 @@ /**

module.exports = function (string, locale) {
return upperCaseFirst(camelCase(string, locale), locale);
};
return upperCaseFirst(camelCase(string, locale), locale)
}
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