37 lines
573 B
JavaScript
37 lines
573 B
JavaScript
const _ = require("lodash");
|
|
const {
|
|
Guesstimator
|
|
} = require('@foretold/guesstimator/src');
|
|
|
|
const stringToSamples = (
|
|
text,
|
|
sampleCount,
|
|
inputs = [],
|
|
) => {
|
|
const [_error, {
|
|
parsedInput,
|
|
parsedError
|
|
}] = Guesstimator.parse({
|
|
text: "=" + text
|
|
});
|
|
|
|
const guesstimator = new Guesstimator({
|
|
parsedInput
|
|
});
|
|
const {
|
|
values,
|
|
errors
|
|
} = guesstimator.sample(
|
|
sampleCount,
|
|
inputs,
|
|
);
|
|
if (errors.length > 0) {
|
|
return []
|
|
} else {
|
|
return _.filter(values, _.isFinite)
|
|
}
|
|
};
|
|
|
|
module.exports = {
|
|
stringToSamples,
|
|
}; |