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

META-INF.resources.bower_components.globalize.src.date.formatter-fn.js Maven / Gradle / Ivy

define([
    "../common/validate/parameter-presence",
    "../common/validate/parameter-type/date",
    "./format"
], function (validateParameterPresence, validateParameterTypeDate, dateFormat) {

    return function (numberFormatters, properties) {
        return function dateFormatter(value) {
            validateParameterPresence(value, "value");
            validateParameterTypeDate(value, "value");

            return dateFormat(value, numberFormatters, properties);
        };

    };

});




© 2015 - 2025 Weber Informatics LLC | Privacy Policy