You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
2 years ago | |
|---|---|---|
| .. | ||
| cjs | 2 years ago | |
| esm | 2 years ago | |
| CHANGELOG.md | 2 years ago | |
| LICENSE.md | 2 years ago | |
| README.md | 2 years ago | |
| package.json | 2 years ago | |
README.md
css-functions-list
List of standard and browser specific CSS functions.
Data sources are:
- MDN reference on CSS functions
- MDN reference on general CSS features.
- MDN browser compatibility data for CSS functions
Install
npm install css-functions-list --save
Usage
import { promises as fs } from 'fs';
import functionsListPath from 'css-functions-list';
(async () => {
const functionsList = JSON.parse(
await fs.readFile(functionsListPath, 'utf8')
);
console.log(functionsList);
/* [
'abs',
'acos',
'annotation',
'asin',
'atan',
'atan2',
'attr',
'blur',
'brightness',
'calc'
// …
]; */
})();
API
functionsListPath
Type: string
Path to CSS functions list JSON file.
License
MIT © Ivan Nikolić