Security News
Opengrep Emerges as Open Source Alternative Amid Semgrep Licensing Controversy
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
@meanie/angular-convert
Advanced tools
An Angular service with various conversion helpers
You can install this package using yarn
or npm
:
#yarn
yarn add @meanie/angular-convert
#npm
npm install @meanie/angular-convert --save
Include the script node_modules/@meanie/angular-convert/release/angular-convert.js
in your build process, or add it via a <script>
tag to your index.html
:
<script src="node_modules/@meanie/angular-convert/release/angular-convert.js"></script>
Add Convert.Service
as a dependency for your app.
angular.module('App.MyModule').controller('MyController', function($convert) {
//Convert strings
var str = $convert.string.toCamelCase('snake_case'); //snakeCase
var str = $convert.string.toSnakeCase('camelCase'); //camel_case
var str = $convert.string.toDasherized('snake_and_camelCase'); //snake-and-camel-case
var str = $convert.string.toUcfirst('lowercase'); //Lowercase
//Convert object keys
var obj = $convert.object.keysToCamelCase({snake_case: 1}); //{snakeCase: 1}
var obj = $convert.object.keysToSnakeCase({camelCase: 1}); //{camel_case: 1}
//Convert query strings
var str = $convert.queryString.fromObject({a: 1, b: 2}); //a=1&b=2
var obj = $convert.queryString.toObject('a=1&b=2'); //{a: 1, b: 2}
});
Please report any bugs, issues, suggestions and feature requests in the @meanie/angular-convert issue tracker.
Pull requests are welcome! If you would like to contribute to Meanie, please check out the Meanie contributing guidelines.
This package has been kindly sponsored by Hello Club, an all in one club and membership management solution complete with booking system, automated membership renewals, online payments and integrated access and light control. Check us out if you happen to belong to any kind of club or if you know someone who helps run a club!
(MIT License)
Copyright 2015-2020, Adam Reis
FAQs
An Angular service with various conversion helpers
We found that @meanie/angular-convert demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.