UNPKG

fixins

Version:

A collection of functions and mixins for use with precss and postcss-functions

20 lines (17 loc) 287 B
'use strict'; module.exports = str; /** * ### `fx-str([input])` * * Wrap input as string, ensures output * in css is wrapped in quotes. * * #### Params * + `input` - anything * * #### Return * + "`input`" */ function str(input) { return `"${input}"`; }