MCPcopy
hub / github.com/elementalui/elemental / denominators

Function denominators

src/constants.js:56–62  ·  view source on GitHub ↗
(n)

Source from the content-addressed store, hash-verified

54}
55
56function denominators (n) {
57 for (var d = 2; d <= 20; d++) {
58 if (n < d) {
59 exports.fractions[n + '/' + d] = perc(n / d);
60 }
61 }
62}
63
64exports.fractions = {
65 '1': '100%',

Callers 1

constants.jsFile · 0.85

Calls 1

percFunction · 0.85

Tested by

no test coverage detected