;(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
global.moment = factory()
}(this, (function () { 'use strict';
var hookCallback;
function hooks() {
return hookCallback.apply(null, arguments);
}
// This is done to register the method called with moment()
// without creating circular dependencies.
function setHookCallback(callback) {
hookCallback = callback;
}
function isArray(input) {
return (
input instanceof Array ||
Object.prototype.toString.call(input) === '[object Array]'
);
}
function isObject(input) {
// IE8 will treat undefined and null as object if it wasn't for
// input != null
return (
input != null &&
Object.prototype.toString.call(input) === '[object Object]'
);
}
function hasOwnProp(a, b) {
return Object.prototype.hasOwnProperty.call(a, b);
}
function isObjectEmpty(obj) {
if (Object.getOwnPropertyNames) {
return Object.getOwnPropertyNames(obj).length === 0;
} else {
var k;
for (k in obj) {
if (hasOwnProp(obj, k)) {
return false;
}
}
return true;
}
}
function isUndefined(input) {
return input === void 0;
}
function isNumber(input) {
return (
typeof input === 'number' ||
Object.prototype.toString.call(input) === '[object Number]'
);
}
function isDate(input) {
return (
input instanceof Date ||
Object.prototype.toString.call(input) === '[object Date]'
);
}
function map(arr, fn) {
var res = [],
i,
arrLen = arr.length;
for (i = 0; i < arrLen; ++i) {
res.push(fn(arr[i], i));
}
return res;
}
function extend(a, b) {
for (var i in b) {
if (hasOwnProp(b, i)) {
a[i] = b[i];
}
}
if (hasOwnProp(b, 'toString')) {
a.toString = b.toString;
}
if (hasOwnProp(b, 'valueOf')) {
a.valueOf = b.valueOf;
}
return a;
}
function createUTC(input, format, locale, strict) {
return createLocalOrUTC(input, format, locale, strict, true).utc();
}
function defaultParsingFlags() {
// We need to deep clone this object.
return {
empty: false,
unusedTokens: [],
unusedInput: [],
overflow: -2,
charsLeftOver: 0,
nullInput: false,
invalidEra: null,
invalidMonth: null,
invalidFormat: false,
userInvalidated: false,
iso: false,
parsedDateParts: [],
era: null,
meridiem: null,
rfc2822: false,
weekdayMismatch: false,
};
}
function getParsingFlags(m) {
if (m._pf == null) {
m._pf = defaultParsingFlags();
}
return m._pf;
}
var some;
if (Array.prototype.some) {
some = Array.prototype.some;
} else {
some = function (fun) {
var t = Object(this),
len = t.length >>> 0,
i;
for (i = 0; i < len; i++) {
if (i in t && fun.call(this, t[i], i, t)) {
return true;
}
}
return false;
};
}
function isValid(m) {
if (m._isValid == null) {
var flags = getParsingFlags(m),
parsedParts = some.call(flags.parsedDateParts, function (i) {
return i != null;
}),
isNowValid =
!isNaN(m._d.getTime()) &&
flags.overflow < 0 &&
!flags.empty &&
!flags.invalidEra &&
!flags.invalidMonth &&
!flags.invalidWeekday &&
!flags.weekdayMismatch &&
!flags.nullInput &&
!flags.invalidFormat &&
!flags.userInvalidated &&
(!flags.meridiem || (flags.meridiem && parsedParts));
if (m._strict) {
isNowValid =
isNowValid &&
flags.charsLeftOver === 0 &&
flags.unusedTokens.length === 0 &&
flags.bigHour === undefined;
}
if (Object.isFrozen == null || !Object.isFrozen(m)) {
m._isValid = isNowValid;
} else {
return isNowValid;
}
}
return m._isValid;
}
function createInvalid(flags) {
var m = createUTC(NaN);
if (flags != null) {
extend(getParsingFlags(m), flags);
} else {
getParsingFlags(m).userInvalidated = true;
}
return m;
}
// Plugins that add properties should also add the key here (null value),
// so we can properly clone ourselves.
var momentProperties = (hooks.momentProperties = []),
updateInProgress = false;
function copyConfig(to, from) {
var i,
prop,
val,
momentPropertiesLen = momentProperties.length;
if (!isUndefined(from._isAMomentObject)) {
to._isAMomentObject = from._isAMomentObject;
}
if (!isUndefined(from._i)) {
to._i = from._i;
}
if (!isUndefined(from._f)) {
to._f = from._f;
}
if (!isUndefined(from._l)) {
to._l = from._l;
}
if (!isUndefined(from._strict)) {
to._strict = from._strict;
}
if (!isUndefined(from._tzm)) {
to._tzm = from._tzm;
}
if (!isUndefined(from._isUTC)) {
to._isUTC = from._isUTC;
}
if (!isUndefined(from._offset)) {
to._offset = from._offset;
}
if (!isUndefined(from._pf)) {
to._pf = getParsingFlags(from);
}
if (!isUndefined(from._locale)) {
to._locale = from._locale;
}
if (momentPropertiesLen > 0) {
for (i = 0; i < momentPropertiesLen; i++) {
prop = momentProperties[i];
val = from[prop];
if (!isUndefined(val)) {
to[prop] = val;
}
}
}
return to;
}
// Moment prototype object
function Moment(config) {
copyConfig(this, config);
this._d = new Date(config._d != null ? config._d.getTime() : NaN);
if (!this.isValid()) {
this._d = new Date(NaN);
}
// Prevent infinite loop in case updateOffset creates new moment
// objects.
if (updateInProgress === false) {
updateInProgress = true;
hooks.updateOffset(this);
updateInProgress = false;
}
}
function isMoment(obj) {
return (
obj instanceof Moment || (obj != null && obj._isAMomentObject != null)
);
}
function warn(msg) {
if (
hooks.suppressDeprecationWarnings === false &&
typeof console !== 'undefined' &&
console.warn
) {
console.warn('Deprecation warning: ' + msg);
}
}
function deprecate(msg, fn) {
var firstTime = true;
return extend(function () {
if (hooks.deprecationHandler != null) {
hooks.deprecationHandler(null, msg);
}
if (firstTime) {
var args = [],
没有合适的资源?快使用搜索试试~ 我知道了~
基于Vue框架的共富认养小程序设计源码
共2000个文件
js:1885个
vue:69个
json:37个
1.该资源内容由用户上传,如若侵权请联系客服进行举报
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
版权申诉
0 下载量 142 浏览量
2024-09-28
06:26:05
上传
评论
收藏 18.55MB ZIP 举报
温馨提示
该项目为基于Vue框架开发的共富认养小程序设计源码,包含4323个文件,涵盖3575个JavaScript文件、256个Vue组件文件、121个Markdown文档、110个JSON配置文件、86个PNG图片资源、45个CSS样式文件、34个SCSS样式文件、10个npm忽略配置文件、8个映射文件、5个命令行脚本以及5个映射文件。该小程序专注于共富认养功能,适用于各种共富认养场景。
资源推荐
资源详情
资源评论
收起资源包目录
基于Vue框架的共富认养小程序设计源码 (2000个子文件)
selfPickUpSite.css 6KB
moment-with-locales.js 607KB
lodash.js 528KB
locales.js 438KB
moment-with-locales.min.js 360KB
locales.min.js 303KB
source-map.debug.js 254KB
moment.js 171KB
moment.js 151KB
core.js 112KB
source-map.js 100KB
lodash.min.js 72KB
moment.min.js 57KB
source-map-consumer.js 37KB
index.js 32KB
source-map.min.js 26KB
_baseConvert.js 16KB
source-map-generator.js 14KB
source-node.js 13KB
day-of-week.js 13KB
core.min.js 12KB
introspection.js 10KB
util.js 10KB
evaluation.js 10KB
month.js 10KB
_mapping.js 10KB
template.js 10KB
ru.js 9KB
jsesc.js 9KB
visitors.js 8KB
ru.js 8KB
ru.js 8KB
from-string.js 8KB
era.js 8KB
cs.js 8KB
locales.js 8KB
mr.js 8KB
index.js 7KB
replacement.js 7KB
modification.js 7KB
hi.js 7KB
sl.js 7KB
offset.js 7KB
wrapperLodash.js 7KB
uk.js 7KB
cs.js 7KB
cs.js 7KB
family.js 7KB
mr.js 6KB
mr.js 6KB
index.js 6KB
hi.js 6KB
hi.js 6KB
gom-deva.js 6KB
hoister.js 6KB
ar.js 6KB
sl.js 6KB
sl.js 6KB
debounce.js 6KB
sk.js 6KB
be.js 6KB
node.js 6KB
context.js 6KB
uk.js 6KB
uk.js 6KB
ancestry.js 6KB
hr.js 6KB
ar-ly.js 6KB
ta.js 6KB
from-array.js 5KB
sr-cyrl.js 5KB
_baseClone.js 5KB
inferers.js 5KB
br.js 5KB
prototype.js 5KB
gom-deva.js 5KB
gom-deva.js 5KB
bs.js 5KB
ar-dz.js 5KB
is.js 5KB
inferer-reference.js 5KB
context.js 5KB
bo.js 5KB
bn-bd.js 5KB
sk.js 5KB
sk.js 5KB
be.js 5KB
be.js 5KB
lb.js 5KB
ar.js 5KB
ar.js 5KB
kn.js 5KB
pl.js 5KB
sr.js 5KB
pa-in.js 5KB
gom-latn.js 5KB
gu.js 5KB
ja.js 5KB
ne.js 5KB
lt.js 5KB
共 2000 条
- 1
- 2
- 3
- 4
- 5
- 6
- 20
资源评论
wjs2024
- 粉丝: 2189
- 资源: 5448
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功