Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
meanie-angular-convert
Advanced tools
An Angular service with various conversion helpers
An Angular service with various conversion helpers
You can install this package using npm
:
npm install meanie-angular-convert --save
Include the script node_modules/meanie-angular-convert/release/meanie-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/meanie-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.
(MIT License)
Copyright 2015-2017, 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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.