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.
Small library for parsing stringified properties or converting object properties to the string representation.
Sop <- SOP <- Stringified object properties.
Sop is a small library for parsing stringified object properties or converting properties to the string representation.
Example usage #1:
<div id="component" data-options="id: 1, name: comp, isEmpty: true"></div>
var elem = document.getElementById('component');
/**
* Result is the object with parsed values:
* {
* id: 1, // Number
* name: 'comp', // String
* isEmpty: true // Boolean
* }
*/
var options = Sop.parse(elem.getAttribute('data-options'));
new Component(elem, options);
Example usage #2:
<div id="component"></div>
var elem = document.getElementById('component');
var options = {
id: 1,
name: 'comp',
isEmpty: true
};
elem.setAttribute('data-options', Sop.stringify(options))
<div id="component" data-options="id:1,name:comp,isEmpty:true"></div>
Node or IE8+
Node, browserify:
npm install sop
var Sop = require('sop');
var sopOpts = {...};
Sop.parse('num: 10', sopOpts);
Sop.stringify({ num: 10 }, sopOpts);
Browsers:
bower install sop
<script scr="bower_components/sop/browser/sop.min.js"></script>
<script>
var sopOpts = {...};
Sop.parse('num: 10', sopOpts);
Sop.stringify({ num: 10 }, sopOpts);
</script>
Parsed types: Number, Boolean, String, null, undefined.
Sop.parse('num: 10.1, bool: true, str: http://site.com, nullVal: null, undefVal: undefined')
// =>
{
num: 10.1,
bool: true,
str: http://site.com,
nullVal: null,
undefVal: undefined
}
If you want to parse something as a string value, add double quotes:
Sop.parse('notNum: "10", notBool: "true", notNull: "null", notUndefined: "undefined"')
// =>
{
notNum: '10',
notBool: 'true',
notNull: 'null',
notUndefined: 'undefined'
}
options
and default values:
{
// Delimiter between a key and a value
keyValDelim: ':',
// Delimiter between properties
propsDelim: ','
}
Sop.stringify({
num: 10.1,
bool: true,
str: http://site.com,
nullVal: null,
undefVal: undefined,
notNum: '10'
}, {
useSpaceAfterKeyValDelim: true,
useSpaceAfterPropsDelim: true
});
// =>
'num: 10.1, bool: true, str: http://site.com, nullVal: null, undVal: undefined, notNum: "10"'
options
and default values:
{
// Delimiter between a key and a value
keyValDelim: ':',
// Delimiter between properties
propsDelim: ',',
// ' :'
useSpaceBeforeKeyValDelim: false,
// ': '
useSpaceAfterKeyValDelim: false,
// ' ,'
useSpaceBeforePropsDelim: false,
// ', '
useSpaceAfterPropsDelim: false,
// Always add double quotes for string values
useAlwaysQuotesForStrings: false
}
The MIT License (MIT)
Copyright (c) 2015 Ilya Makarov
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.
0.0.3
FAQs
Small library for parsing stringified properties or converting object properties to the string representation.
We found that sop 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.