purs-pkg-deps
Version:
Query package dependencies in PureScript package-sets
69 lines (68 loc) • 1.88 kB
JavaScript
// Generated by purs version 0.14.3
;
var $foreign = require("./foreign.js");
var Data_Ord = require("../Data.Ord/index.js");
var Precision = (function () {
function Precision(value0) {
this.value0 = value0;
};
Precision.create = function (value0) {
return new Precision(value0);
};
return Precision;
})();
var Fixed = (function () {
function Fixed(value0) {
this.value0 = value0;
};
Fixed.create = function (value0) {
return new Fixed(value0);
};
return Fixed;
})();
var Exponential = (function () {
function Exponential(value0) {
this.value0 = value0;
};
Exponential.create = function (value0) {
return new Exponential(value0);
};
return Exponential;
})();
var toStringWith = function (v) {
if (v instanceof Precision) {
return $foreign.toPrecisionNative(v.value0);
};
if (v instanceof Fixed) {
return $foreign.toFixedNative(v.value0);
};
if (v instanceof Exponential) {
return $foreign.toExponentialNative(v.value0);
};
throw new Error("Failed pattern match at Data.Number.Format (line 59, column 1 - line 59, column 43): " + [ v.constructor.name ]);
};
var precision = (function () {
var $5 = Data_Ord.clamp(Data_Ord.ordInt)(1)(21);
return function ($6) {
return Precision.create($5($6));
};
})();
var fixed = (function () {
var $7 = Data_Ord.clamp(Data_Ord.ordInt)(0)(20);
return function ($8) {
return Fixed.create($7($8));
};
})();
var exponential = (function () {
var $9 = Data_Ord.clamp(Data_Ord.ordInt)(0)(20);
return function ($10) {
return Exponential.create($9($10));
};
})();
module.exports = {
precision: precision,
fixed: fixed,
exponential: exponential,
toStringWith: toStringWith,
toString: $foreign.toString
};