peach a19a732be8 commit message | hace 2 años | |
---|---|---|
.. | ||
cjs | hace 2 años | |
esm | hace 2 años | |
CHANGELOG.md | hace 2 años | |
LICENSE.md | hace 2 años | |
README.md | hace 2 años | |
package.json | hace 2 años |
List of standard and browser specific CSS functions.
Source of data is MDN reference on CSS functions and general CSS features.
npm install css-functions-list --save
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'
// …
]; */
})();
Type: string
Path to CSS functions list JSON file.
MIT © Ivan Nikolić