All Downloads are FREE. Search and download functionalities are using the official Maven repository.

META-INF.resources.bower_components.globalize.src.number.parser-fn.js Maven / Gradle / Ivy

There is a newer version: 1.2.2.1-jre17
Show newest version
define([
    "../common/validate/parameter-presence",
    "../common/validate/parameter-type/string",
    "./parse"
], function (validateParameterPresence, validateParameterTypeString, numberParse) {

    return function (properties) {
        return function numberParser(value) {
            validateParameterPresence(value, "value");
            validateParameterTypeString(value, "value");

            return numberParse(value, properties);
        };

    };

});




© 2015 - 2024 Weber Informatics LLC | Privacy Policy