Mohammad Asif cf937194cb Removed un-waned things 1. | vor 5 Monaten | |
---|---|---|
.. | ||
cjs | vor 5 Monaten | |
esm | vor 5 Monaten | |
CHANGELOG.md | vor 5 Monaten | |
LICENSE.md | vor 5 Monaten | |
README.md | vor 5 Monaten | |
package.json | vor 5 Monaten |
List of standard and browser specific CSS functions.
Data sources are:
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ć