UNPKG

sugar

Version:

A Javascript utility library for working with native objects.

14 lines (9 loc) 252 B
'use strict'; var Sugar = require('sugar-core'), numberFormat = require('./internal/numberFormat'); Sugar.Number.defineInstance({ 'format': function(n, place) { return numberFormat(n, place); } }); module.exports = Sugar.Number.format;