Package Exports
- postcss-functions
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (postcss-functions) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
postcss-functions 
PostCSS plugin for exposing JavaScript functions.
Installation
npm install postcss-functions
Usage
var fs = require('fs');
var postcss = require('postcss');
var functions = require('postcss-functions');
var options = {
//options
};
var css = fs.readFileSync('input.css', 'utf8');
postcss()
.use(functions(options))
.process(css)
.then(function (result) {
var output = result.css;
});
Example of a function call:
body {
prop: foobar();
}
Options
functions
Type: Object
An object containing functions. The function name will correspond with the object key.
Example:
var color = require('css-color-converter');
require('postcss-functions')({
functions: {
darken: function (value, frac) {
var darken = 1 - parseFloat(frac);
var rgba = color(value).toRgbaArray();
var r = rgba[0] * darken;
var g = rgba[1] * darken;
var b = rgba[2] * darken;
return color([r,g,b]).toHexString();
}
}
});
.foo {
/* make 10% darker */
color: darken(blue, 0.1);
}
glob
Type: string|string[]
Loads files as functions based on one or more glob patterns. The function name will correspond with the file name.
Example:
require('postcss-functions')({
glob: path.join(__dirname, 'functions', '*.js')
});