Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
\ / _. | _ ._ _|_ o ._ _
\/ (_| | (/_ | | |_ | | | (/_
JavaScript's Sister, and protector — inspired by Underscore; Valentine provides you with type checking, functional iterators, and common utility helpers such as waterfalls, queues, and parallels; all utilizing native JavaScript methods for optimal speed.
As of version 2.0.0
— Valentine no longer supports <= IE8
and <= Safari 4
. It's been real, but time to move on. To access this level of support, use the 1.8 tag.
<script src="valentine.js"></script>
<script>
v.forEach(['a', 'b', 'c'], function (letter) {
})
</script>
npm install valentine
var v = require('valentine')
// showcase object style
v(['a', 'b', 'c']).map(function (letter) {
return letter.toUpperCase()
}).join(' '); // => 'A B C'
v.each(array || object, callback[, scope]) => void
v.map(array || object, callback[, scope]) => array
v.every(array || object, *callback[, scope]) => boolean
v.some(array || object, *callback[, scope]) => boolean
v.filter(array || object, *callback[, scope]) => array || object
v.reject(ar, *callback[, scope])
v.indexOf(ar, item[, start])
v.lastIndexOf(ar, item[, start])
v.reduce(ar, **callback, memo[, scope])
v.reduceRight(ar, **callback, memo[, scope])
*callback
is defined as:
// when array
function callback(item, index, array) {
}
// when object
function callback(key, value, object) {
}
**calback
is defined as:
function callback(memo, item, index, array) {
}
// use memo to cache expensive methods
var getAllTheDom = v.memo(function () {
return v(document.getElementsByTagName('*')).toArray()
})
getAllTheDom().each(modifier)
v.parallel(
function (fn) {
getTimeline(function (e, timeline) {
fn(e, timeline)
})
}
, function (fn) {
getUser(function (e, user) {
fn(e, user)
})
}
, function (e, timeline, user) {
if (e) return console.log(e)
ok(timeline == 'one', 'first result is "one"')
ok(user == 'two', 'second result is "two"')
}
)
v.waterfall(
function (callback) {
callback(null, 'one', 'two')
}
, function (a, b, callback) {
console.log(a == 'one')
console.log(b == 'two')
callback(null, 'three')
}
, function (c, callback) {
console.log(c == 'three')
callback(null, 'final result')
}
, function (err, result) {
console.log(!!err == false)
console.log(result == 'final result')
}
)
waterfall
except passing along args to next function is not a concernv.series([
function (callback) {
setTimeout(callback, 2000)
}
, function (callback) {
process.nextTick(callback)
}
, function (callback) {
callback(null)
}]
, function (err) {
console.log('done')
}
)
var it = v.queue(
function () {
console.log('one')
it.next()
}
, function () {
console.log('two')
it.next()
}
, function () {
console.log('three')
}
)
it.next()
window.onscroll = v.throttle(50, function (e) {
// expensive scroll function
})
window.mousemove = v.debounce(500, function (e) {
// user has paused momentarily
})
textarea.onkeypress = v.throttleDebounce(20000, 1000, function () {
// autosave(this.value)
// called after 1s if not called again within 1s
// but guaranteed to be called within 20s
})
Each method returns a boolean
v(['a', 'b', 'c']).map(function (letter) {
return letter.toUpperCase()
}); // => ['A', 'B', 'C']
v(['a', 'b', [['c']], 0, false,,,null,['a', 'b', 'c']])
.chain().flatten().compact().uniq().map(function (letter) {
return letter.toUpperCase()
}).value(); // => ['A', 'B', 'C']
ender add valentine
// available as a top level method on `$`
$.v(['a', ['virus'], 'b', 'c']).reject(function (el, i) {
return $.is.arr(el[i])
})
// top level methods in bridge
$.each
map
merge
extend
toArray
keys
values
trim
bind
curry
parallel
waterfall
inArray
queue
Or just require the valentine module
!function (v) {
v(['a', ['virus'], 'b', 'c']).reject(function (el, i) {
return v.is.arr(el[i])
})
}(require('valentine'))
Care to contribute? Make your edits to src/valentine.js
and get your environment up and running
npm install
make
make test
open tests/index.html
Happy iterating!
FAQs
JavaScript’s Functional Sister. Utilitiy, Iterators, type checking
The npm package valentine receives a total of 16 weekly downloads. As such, valentine popularity was classified as not popular.
We found that valentine 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
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.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.