css-functions-list
List of standard and browser specific CSS functions.
Last updated 4 years ago by niksy .
MIT · Repository · Bugs · Original npm
$ cnpm install css-functions-list 
SYNC missed versions from official npm registry.

css-functions-list

Build Status

List of standard and browser specific CSS functions.

Source of data is MDN reference on CSS functions and general CSS features.

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ć

Current Tags

  • 3.1.0                                ...           latest (3 years ago)

2 Versions

  • 3.1.0                                ...           3 years ago
  • 3.0.1                                ...           4 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 0
Dependencies (0)
None
Dev Dependencies (24)
Dependents (0)
None

Copyright 2013 - present © cnpmjs.org