UNPKG

inch

Version:

Convert inch to cm, ft and yd.

13 lines (11 loc) 219 B
'use strict'; module.exports = function (inch) { if (typeof inch !== 'number') { throw new TypeError('Expected a number'); } return { cm: inch * 2.54, ft: inch * 0.0833333333, yd: inch * 0.0277777778 }; };