UNPKG

238 BJavaScriptView Raw
1var nodes = require('../nodes');
2
3/**
4 * Get Math `prop`.
5 *
6 * @param {String} prop
7 * @return {Unit}
8 * @api private
9 */
10
11function math(prop){
12 return new nodes.Unit(Math[prop.string]);
13}
14math.params = ['prop'];
15module.exports = math;