New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@codemod-utils/ember-cli-string

Package Overview
Dependencies
Maintainers
0
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@codemod-utils/ember-cli-string

Utilities for string, as used by Ember CLI

1.1.4
latest
Source
npm
Version published
Weekly downloads
15
275%
Maintainers
0
Weekly downloads
 
Created
Source

This project uses GitHub Actions for continuous integration.

@codemod-utils/ember-cli-string

Utilities for string, as used by Ember CLI

What is it?

@codemod-utils/ember-cli-string provides some methods from ember-cli-string-utils, ones that are practical for writing Ember codemods. The code have been simplified and support ESM.

API

The methods are built with the entity name in mind, a string (possibly with hyphens and forward slashes) that represents a set of related files in Ember.

(For example, the <Ui::Button> component has the entity name 'ui/button'. In the Ember source code, you may see variable names like entityName or moduleName.)

camelize

Returns a string in camel-case.

import { camelize } from '@codemod-utils/ember-cli-string';

const newValue = camelize('css-class-name');

// 'cssClassName'

classify

Returns a string that can be used to name a JavaScript class (a.k.a. Pascal case).

import { classify } from '@codemod-utils/ember-cli-string';

const newValue = classify('ui/button');

// 'UiButton'

doubleColonize

Returns a string associated with the angle bracket syntax for components.

import { doubleColonize } from '@codemod-utils/ember-cli-string';

const newValue = doubleColonize('ui/button');

// 'Ui::Button'

Compatibility

  • Node.js v18 or above

Contributing

See the Contributing guide for details.

License

This project is licensed under the MIT License.

Keywords

codemod

FAQs

Package last updated on 13 Aug 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts