Sha256: 5c97bab30701131bcf66927e85f9e43e43e83a084fa3094adbe68614651a225d
Contents?: true
Size: 689 Bytes
Versions: 4
Compression:
Stored size: 689 Bytes
Contents
/*! * vue-validator v2.1.3 * (c) 2016 kazuya kawaguchi * Released under the MIT License. */ (function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : typeof define === 'function' && define.amd ? define(factory) : (global.VueValidator = factory()); }(this, function () { 'use strict'; function plugin(Vue) { var options = arguments.length <= 1 || arguments[1] === undefined ? {} : arguments[1]; Vue.prototype.$add = function (a, b) { return a + b; }; } plugin.version = '2.1.3'; if (typeof window !== 'undefined' && window.Vue) { window.Vue.use(plugin); } return plugin; }));
Version data entries
4 entries across 4 versions & 1 rubygems