jamesread 7d020873d6 fix: #672 Empty execution tracking ID in InternalLogEntry (backport to release/2k) пре 10 месеци
..
cjs 7d020873d6 fix: #672 Empty execution tracking ID in InternalLogEntry (backport to release/2k) пре 10 месеци
esm 7d020873d6 fix: #672 Empty execution tracking ID in InternalLogEntry (backport to release/2k) пре 10 месеци
CHANGELOG.md 7d020873d6 fix: #672 Empty execution tracking ID in InternalLogEntry (backport to release/2k) пре 10 месеци
LICENSE.md 7d020873d6 fix: #672 Empty execution tracking ID in InternalLogEntry (backport to release/2k) пре 10 месеци
README.md 7d020873d6 fix: #672 Empty execution tracking ID in InternalLogEntry (backport to release/2k) пре 10 месеци
package.json 7d020873d6 fix: #672 Empty execution tracking ID in InternalLogEntry (backport to release/2k) пре 10 месеци

README.md

css-functions-list

Build Status

List of standard and browser specific CSS functions.

Data sources are:

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ć