1. css-functions-list
List of standard and browser specific CSS functions.
css-functions-list
Package: css-functions-list
Created by: niksy
Last modified: Mon, 22 Apr 2024 06:56:07 GMT
Version: 3.2.2
License: MIT
Downloads: 12,976,738
Repository: https://github.com/niksy/css-functions-list

Install

npm install css-functions-list
yarn add css-functions-list

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ć

RELATED POST

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin