🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

css-functions-list

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

css-functions-list

List of standard and browser specific CSS functions.

3.2.3
latest
Source
npm
Version published
Weekly downloads
4.2M
-9.32%
Maintainers
1
Weekly downloads
 
Created
Source

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ć

Keywords

css

FAQs

Package last updated on 09 Oct 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts