
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
gulp-polyfit
Advanced tools
Generate the polyfill file by collecting the polyfill marks in the comment, thanks to https://polyfill.io
npm install gulp-polyfit --save-dev
var gulp = require('gulp')
var polyfit = require('gulp-polyfit')
gulp.task('polyfill', function() {
return gulp.src('test.js')
.pipe(polyfit({
output: './', // output dir, default: './'
minify: true, // default: true, minify the polyfill script
features: [], // extra polyfill features
filename: 'polyfill.min.js', // the polyfill file name, default: polyfill.min.js
result: 'polyfill_list.json' // if specified, will output all the polyfills name
}))
.pipe(gulp.dest('./'))
})
test.js:
/**
* polyfill: Array.from,
* Number.parseInt, Number.isInteger
*/
function addInt() {
var args = Array.from(arguments)
// polyfill: Array.prototype.map, Array.prototype.filter
return args.map(function(value) {
return Number.parseInt(value, 10)
}).filter(function(value) {
return Number.isInteger(value)
}).reduce(function(foo, bar) { // polyfill: Array.prototype.reduce
return foo + bar
})
}
console.log(addInt(1, 2, 3)) // result is 6
run gulp polyfill
, and the polyfill_list.json will be:
{
"polyfills": [
"Array.from",
"Array.prototype.filter",
"Array.prototype.map",
"Array.prototype.reduce",
"Number.isInteger",
"Number.parseInt"
]
}
the polyfill comment must start with "polyfill:"
and separate the features by commas
you can find all support features at https://polyfill.io/v2/docs/features/,
you can use (LABjs)['https://github.com/getify/LABjs']
or (yepnope.js)['https://github.com/SlexAxton/yepnope.js']
to load polyfills conditionally,
FAQs
collect polyfills marked in comments and generate the polyfill script
We found that gulp-polyfit 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
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.