css-functions-list
TypeScript icon, indicating that this package has built-in type declarations

3.2.2 • Public • Published

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ć

Dependencies (0)

    Dev Dependencies (23)

    Package Sidebar

    Install

    npm i css-functions-list

    Weekly Downloads

    3,275,935

    Version

    3.2.2

    License

    MIT

    Unpacked Size

    30.4 kB

    Total Files

    16

    Last publish

    Collaborators

    • niksy