pax_global_header00006660000000000000000000000064135227557020014522gustar00rootroot0000000000000052 comment=64ee9eefbf4ba9e05152a72eb6d59a284af95dd6 pascalcase-1.0.0/000077500000000000000000000000001352275570200136175ustar00rootroot00000000000000pascalcase-1.0.0/.editorconfig000066400000000000000000000003271352275570200162760ustar00rootroot00000000000000# http://editorconfig.org/ root = true [*] charset = utf-8 end_of_line = lf indent_size = 2 indent_style = space insert_final_newline = true trim_trailing_whitespace = true [*.md] trim_trailing_whitespace = false pascalcase-1.0.0/.eslintrc.json000066400000000000000000000073251352275570200164220ustar00rootroot00000000000000{ "extends": [ "eslint:recommended" ], "env": { "browser": false, "es6": true, "node": true, "mocha": true }, "parserOptions":{ "ecmaVersion": 9, "sourceType": "module", "ecmaFeatures": { "modules": true, "experimentalObjectRestSpread": true } }, "globals": { "document": false, "navigator": false, "window": false }, "rules": { "accessor-pairs": 2, "arrow-spacing": [2, { "before": true, "after": true }], "block-spacing": [2, "always"], "brace-style": [2, "1tbs", { "allowSingleLine": true }], "comma-dangle": [2, "never"], "comma-spacing": [2, { "before": false, "after": true }], "comma-style": [2, "last"], "constructor-super": 2, "curly": [2, "multi-line"], "dot-location": [2, "property"], "eol-last": 2, "eqeqeq": [2, "allow-null"], "generator-star-spacing": [2, { "before": true, "after": true }], "handle-callback-err": [2, "^(err|error)$" ], "indent": [2, 2, { "SwitchCase": 1 }], "key-spacing": [2, { "beforeColon": false, "afterColon": true }], "keyword-spacing": [2, { "before": true, "after": true }], "new-cap": [2, { "newIsCap": true, "capIsNew": false }], "new-parens": 2, "no-array-constructor": 2, "no-caller": 2, "no-class-assign": 2, "no-cond-assign": 2, "no-const-assign": 2, "no-control-regex": 2, "no-debugger": 2, "no-delete-var": 2, "no-dupe-args": 2, "no-dupe-class-members": 2, "no-dupe-keys": 2, "no-duplicate-case": 2, "no-empty-character-class": 2, "no-eval": 2, "no-ex-assign": 2, "no-extend-native": 2, "no-extra-bind": 2, "no-extra-boolean-cast": 2, "no-extra-parens": [2, "functions"], "no-fallthrough": 2, "no-floating-decimal": 2, "no-func-assign": 2, "no-implied-eval": 2, "no-inner-declarations": [2, "functions"], "no-invalid-regexp": 2, "no-irregular-whitespace": 2, "no-iterator": 2, "no-label-var": 2, "no-labels": 2, "no-lone-blocks": 2, "no-mixed-spaces-and-tabs": 2, "no-multi-spaces": 2, "no-multi-str": 2, "no-multiple-empty-lines": [2, { "max": 1 }], "no-native-reassign": 0, "no-negated-in-lhs": 2, "no-new": 2, "no-new-func": 2, "no-new-object": 2, "no-new-require": 2, "no-new-wrappers": 2, "no-obj-calls": 2, "no-octal": 2, "no-octal-escape": 2, "no-proto": 0, "no-redeclare": 2, "no-regex-spaces": 2, "no-return-assign": 2, "no-self-compare": 2, "no-sequences": 2, "no-shadow-restricted-names": 2, "no-spaced-func": 2, "no-sparse-arrays": 2, "no-this-before-super": 2, "no-throw-literal": 2, "no-trailing-spaces": 0, "no-undef": 2, "no-undef-init": 2, "no-unexpected-multiline": 2, "no-unneeded-ternary": [2, { "defaultAssignment": false }], "no-unreachable": 2, "no-unused-vars": [2, { "vars": "all", "args": "none" }], "no-useless-call": 0, "no-with": 2, "one-var": [0, { "initialized": "never" }], "operator-linebreak": [0, "after", { "overrides": { "?": "before", ":": "before" } }], "padded-blocks": [0, "never"], "quotes": [2, "single", "avoid-escape"], "radix": 2, "semi": [2, "always"], "semi-spacing": [2, { "before": false, "after": true }], "space-before-blocks": [2, "always"], "space-before-function-paren": [2, "never"], "space-in-parens": [2, "never"], "space-infix-ops": 2, "space-unary-ops": [2, { "words": true, "nonwords": false }], "spaced-comment": [0, "always", { "markers": ["global", "globals", "eslint", "eslint-disable", "*package", "!", ","] }], "use-isnan": 2, "valid-typeof": 2, "wrap-iife": [2, "any"], "yoda": [2, "never"] } } pascalcase-1.0.0/.gitattributes000066400000000000000000000002001352275570200165020ustar00rootroot00000000000000# Enforce Unix newlines * text eol=lf # binaries *.ai binary *.psd binary *.jpg binary *.gif binary *.png binary *.jpeg binary pascalcase-1.0.0/.gitignore000066400000000000000000000004471352275570200156140ustar00rootroot00000000000000# always ignore files *.DS_Store .idea .vscode *.sublime-* # test related, or directories generated by tests test/actual actual coverage .nyc* # npm node_modules npm-debug.log # yarn yarn.lock yarn-error.log # misc _gh_pages _draft _drafts bower_components vendor temp tmp package-lock.json pascalcase-1.0.0/.travis.yml000066400000000000000000000001651352275570200157320ustar00rootroot00000000000000sudo: false os: - linux - osx - windows language: node_js node_js: - node - '12' - '11' - '10' - '8' pascalcase-1.0.0/.verb.md000066400000000000000000000013521352275570200151560ustar00rootroot00000000000000## Usage ```js const pascalcase = require('{%= name %}'); console.log(pascalcase('a')); //=> 'A' console.log(pascalcase('foo bar baz')); //=> 'FooBarBaz' console.log(pascalcase(' foo bar baz ')); //=> 'FooBarBaz' console.log(pascalcase('foo_bar-baz')); //=> 'FooBarBaz' console.log(pascalcase('foo.bar.baz')); //=> 'FooBarBaz' console.log(pascalcase('foo/bar/baz')); //=> 'FooBarBaz' console.log(pascalcase('foo[bar)baz')); //=> 'FooBarBaz' console.log(pascalcase('#foo+bar*baz')); //=> 'FooBarBaz' console.log(pascalcase('$foo~bar`baz')); //=> 'FooBarBaz' console.log(pascalcase('_foo_bar-baz-')); //=> 'FooBarBaz' console.log(pascalcase('foo 2 bar 5 baz')); //=> 'Foo2Bar5Baz' console.log(pascalcase('foo2bar5baz')); //=> 'Foo2bar5baz' ``` pascalcase-1.0.0/LICENSE000066400000000000000000000021031352275570200146200ustar00rootroot00000000000000The MIT License (MIT) Copyright (c) 2015-present, Jon Schlinkert. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. pascalcase-1.0.0/README.md000066400000000000000000000105101352275570200150730ustar00rootroot00000000000000# pascalcase [![Donate](https://img.shields.io/badge/Donate-PayPal-green.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=W8YFZ425KND68) [![NPM version](https://img.shields.io/npm/v/pascalcase.svg?style=flat)](https://www.npmjs.com/package/pascalcase) [![NPM monthly downloads](https://img.shields.io/npm/dm/pascalcase.svg?style=flat)](https://npmjs.org/package/pascalcase) [![NPM total downloads](https://img.shields.io/npm/dt/pascalcase.svg?style=flat)](https://npmjs.org/package/pascalcase) [![Linux Build Status](https://img.shields.io/travis/jonschlinkert/pascalcase.svg?style=flat&label=Travis)](https://travis-ci.org/jonschlinkert/pascalcase) > Convert a string to pascal-case. Please consider following this project's author, [Jon Schlinkert](https://github.com/jonschlinkert), and consider starring the project to show your :heart: and support. ## Install Install with [npm](https://www.npmjs.com/) (requires [Node.js](https://nodejs.org/en/) >=8): ```sh $ npm install --save pascalcase ``` ## Usage ```js const pascalcase = require('pascalcase'); console.log(pascalcase('a')); //=> 'A' console.log(pascalcase('foo bar baz')); //=> 'FooBarBaz' console.log(pascalcase(' foo bar baz ')); //=> 'FooBarBaz' console.log(pascalcase('foo_bar-baz')); //=> 'FooBarBaz' console.log(pascalcase('foo.bar.baz')); //=> 'FooBarBaz' console.log(pascalcase('foo/bar/baz')); //=> 'FooBarBaz' console.log(pascalcase('foo[bar)baz')); //=> 'FooBarBaz' console.log(pascalcase('#foo+bar*baz')); //=> 'FooBarBaz' console.log(pascalcase('$foo~bar`baz')); //=> 'FooBarBaz' console.log(pascalcase('_foo_bar-baz-')); //=> 'FooBarBaz' console.log(pascalcase('foo 2 bar 5 baz')); //=> 'Foo2Bar5Baz' console.log(pascalcase('foo2bar5baz')); //=> 'Foo2bar5baz' ``` ## About
Contributing Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](../../issues/new).
Running Tests Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command: ```sh $ npm install && npm test ```
Building docs _(This project's readme.md is generated by [verb](https://github.com/verbose/verb-generate-readme), please don't edit the readme directly. Any changes to the readme must be made in the [.verb.md](.verb.md) readme template.)_ To generate the readme, run the following command: ```sh $ npm install -g verbose/verb#dev verb-generate-readme && verb ```
### Related projects You might also be interested in these projects: * [ansi-colors](https://www.npmjs.com/package/ansi-colors): Easily add ANSI colors to your text and symbols in the terminal. A faster drop-in… [more](https://github.com/doowb/ansi-colors) | [homepage](https://github.com/doowb/ansi-colors "Easily add ANSI colors to your text and symbols in the terminal. A faster drop-in replacement for chalk, kleur and turbocolor (without the dependencies and rendering bugs).") * [justified](https://www.npmjs.com/package/justified): Wraps words to a specified length and justifies the text in each line. | [homepage](https://github.com/jonschlinkert/justified "Wraps words to a specified length and justifies the text in each line.") * [randomatic](https://www.npmjs.com/package/randomatic): Generate randomized strings of a specified length using simple character sequences. The original generate-password. | [homepage](https://github.com/jonschlinkert/randomatic "Generate randomized strings of a specified length using simple character sequences. The original generate-password.") * [word-wrap](https://www.npmjs.com/package/word-wrap): Wrap words to a specified length. | [homepage](https://github.com/jonschlinkert/word-wrap "Wrap words to a specified length.") ### Author **Jon Schlinkert** * [GitHub Profile](https://github.com/jonschlinkert) * [Twitter Profile](https://twitter.com/jonschlinkert) * [LinkedIn Profile](https://linkedin.com/in/jonschlinkert) ### License Copyright © 2019, [Jon Schlinkert](https://github.com/jonschlinkert). Released under the [MIT License](LICENSE). *** _This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.8.0, on August 08, 2019._pascalcase-1.0.0/index.js000066400000000000000000000012021352275570200152570ustar00rootroot00000000000000/*! * pascalcase * * Copyright (c) 2015-present, Jon ("Schlink") Schlinkert. * Licensed under the MIT License. */ const titlecase = input => input[0].toLocaleUpperCase() + input.slice(1); module.exports = value => { if (value === null || value === void 0) return ''; if (typeof value.toString !== 'function') return ''; let input = value.toString().trim(); if (input === '') return ''; if (input.length === 1) return input.toLocaleUpperCase(); let match = input.match(/[a-zA-Z0-9]+/g); if (match) { return match.map(m => titlecase(m)).join(''); } return input; }; pascalcase-1.0.0/package.json000066400000000000000000000020661352275570200161110ustar00rootroot00000000000000{ "name": "pascalcase", "description": "Convert a string to pascal-case.", "version": "1.0.0", "homepage": "https://github.com/jonschlinkert/pascalcase", "author": "Jon Schlinkert (https://github.com/jonschlinkert)", "repository": "jonschlinkert/pascalcase", "bugs": { "url": "https://github.com/jonschlinkert/pascalcase/issues" }, "license": "MIT", "files": [ "index.js" ], "main": "index.js", "engines": { "node": ">=8" }, "scripts": { "test": "mocha" }, "devDependencies": { "gulp-format-md": "^2.0.0", "mocha": "^6.2.0" }, "keywords": [ "camelcase", "case", "casing", "pascal", "pascal-case", "pascal case", "pascalcase", "string", "UpperCamelCase" ], "verb": { "toc": false, "layout": "default", "tasks": [ "readme" ], "plugins": [ "gulp-format-md" ], "related": { "list": [ "ansi-colors", "word-wrap", "randomatic", "justified" ] }, "lint": { "reflinks": true } } } pascalcase-1.0.0/test.js000066400000000000000000000037621352275570200151440ustar00rootroot00000000000000'use strict'; require('mocha'); const assert = require('assert').strict; const pascalcase = require('.'); describe('pascalcase', () => { it('should uppercase a single character string', () => { assert.equal(pascalcase('a'), 'A'); assert.equal(pascalcase('Z'), 'Z'); }); it('should work with spaces', () => { assert.equal(pascalcase('foo bar baz'), 'FooBarBaz'); assert.equal(pascalcase('foo baz'), 'FooBaz'); assert.equal(pascalcase(' foo bar baz '), 'FooBarBaz'); }); it('should work with numbers', () => { assert.equal(pascalcase(3), '3'); assert.equal(pascalcase('foo2bar5baz'), 'Foo2bar5baz'); assert.equal(pascalcase('foo 2 bar 5 baz'), 'Foo2Bar5Baz'); }); it('should not lowercase existing camelcasing', () => { assert.equal(pascalcase('fooBarBaz'), 'FooBarBaz'); assert.equal(pascalcase('FooBarBaz'), 'FooBarBaz'); assert.equal(pascalcase(' FooBarBaz'), 'FooBarBaz'); assert.equal(pascalcase(' fooBarBaz'), 'FooBarBaz'); }); it('should remove non-word-characters', () => { assert.equal(pascalcase('foo_bar-baz'), 'FooBarBaz'); assert.equal(pascalcase('foo.bar.baz'), 'FooBarBaz'); assert.equal(pascalcase('foo/bar/baz'), 'FooBarBaz'); assert.equal(pascalcase('foo[bar)baz'), 'FooBarBaz'); assert.equal(pascalcase('#foo+bar*baz'), 'FooBarBaz'); assert.equal(pascalcase('$foo~bar`baz'), 'FooBarBaz'); assert.equal(pascalcase('_foo_bar-baz-'), 'FooBarBaz'); assert.equal(pascalcase('_A_B_c-'), 'ABC'); }); it('should return empty string when value null or undefined', () => { assert.equal(pascalcase(null), ''); assert.equal(pascalcase(), ''); }); it('should call .toString() when value is not a primitive', () => { assert.equal(pascalcase(['one', 'two', 'three']), 'OneTwoThree'); assert.equal(pascalcase([]), ''); assert.equal(pascalcase(function foo_bar() {}), 'FunctionFooBar'); assert.equal(pascalcase({}), 'ObjectObject'); assert.equal(pascalcase(/foo/), 'Foo'); }); });