List of vendor prefixes.
- What is this?
- When should I use this?
- Install
- Use
- API
- Types
- Compatibility
- Security
- Contribute
- License
This is a little list of real (as in, mso-
and prince-
are not included
because they are not valid) vendor prefixes known to the web platform.
From Wikipedia and the CSS 2.1 spec.
You can use this package if you’re dealing with parsing and transforming CSS and you don’t want to copy/paste these prefixes into each project.
This package is ESM only. In Node.js (version 14.14+, 16.0+), install with npm:
npm install vendors
In Deno with esm.sh
:
import {vendors} from 'https://esm.sh/vendors@2'
In browsers with esm.sh
:
<script type="module">
import {vendors} from 'https://esm.sh/vendors@2?bundle'
</script>
import {vendors} from 'vendors'
console.log(vendors)
Yields:
[
'ah',
'apple',
'atsc',
'epub',
'hp',
'khtml',
'moz',
'ms',
'o',
'rim',
'ro',
'tc',
'wap',
'webkit',
'xv'
]
This package exports the identifier vendors
.
There is no default export.
List of vendor prefixes (string[]
).
This package is fully typed with TypeScript. It exports no additional types.
This package is at least compatible with all maintained versions of Node.js. As of now, that is Node.js 14.14+ and 16.0+. It also works in Deno and modern browsers.
This package is safe.
Yes please! See How to Contribute to Open Source.