Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@codemod-utils/ember-cli-string

Package Overview
Dependencies
Maintainers
1
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.2
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
9
increased by125%
Maintainers
1
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

FAQs

Package last updated on 18 Mar 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

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