
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
Browser vendor prefix helper
Inspired by Modernizr.prefixed and Modernizr.prefixedCSS from Modernizr.
$ npm install --save pfx
const pfx = require('pfx');
const boxReflect = pfx('boxReflect');
// boxReflect === 'WebkitBoxReflect' in Webkit browsers
const transition = pfx('transition');
// transition === 'MozTransition' in old Firefox
By default, the property is checked against a DOM element. If you want to check against a different element, pass it in as the second argument.
const rAF = pfx('requestAnimationFrame', window);
// rAF === 'MozRequestAnimationFrame' in old Firefox
You can also get the function by passing in the value true as the third argument.
const rAF = pfx('requestAnimationFrame', window, true);
// typeof rAF === 'function'
rAF(() => {
// do something
});
If you want to get the hyphenated form to use with css, you can use the following syntax.
const boxReflect = pfx.css('boxReflect');
// boxReflect === '-webkit-box-reflect' for Webkit browsers
Takes a string in camelCase style and returns the version of the property that the browser supports.
Type: string
Type: object
Type: boolean object
MIT © Alex Cross
FAQs
Browser vendor prefix helper
We found that pfx 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.