math-prop.js 209 B

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