code stringlengths 2 1.05M |
|---|
/*jslint node: true */
var grunt_common = require('apigee-sdk-mgmt-api');
module.exports = function(grunt) {
'use strict';
grunt.registerTask('installNpmRevision', 'install npm API revision. e.g. grunt installNpmRevision:{revision_id}', function(revision) {
var done = this.async();
if(grunt.option('upload... |
jQuery(function ($) {
'use strict';
// -------------------------------------------------------------
// Preloader
// -------------------------------------------------------------
(function () {
$('#status').fadeOut();
$('#preloader').delay(200).fadeOut('slow');
}());
//... |
// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/**
* @name: S15.9.5.6_A1_T1;
* @section: 15.9.5.6;
* @assertion: The Date.prototype property "toLocaleDateString" has { DontEnum } attributes;
* @description: Checking absence of Rea... |
var group___xE7_x94_xA8_xE6_x88_xB7_xE4_xBF_xA1_xE6_x81_xAF =
[
[ "getUserInfo", "group___xE7_x94_xA8_xE6_x88_xB7_xE4_xBF_xA1_xE6_x81_xAF.html#ga81f19b7cb6b01bc702461e82d89e9709", null ],
[ "getSelfInfo", "group___xE7_x94_xA8_xE6_x88_xB7_xE4_xBF_xA1_xE6_x81_xAF.html#gad8c7c282438cbc2f4b06165a5d533617", null ],
... |
/**
* Simulator process
* Pokemon Showdown - http://pokemonshowdown.com/
*
* This file is where the battle simulation itself happens.
*
* The most important part of the simulation happens in runEvent -
* see that function's definition for details.
*
* @license MIT license
*/
'use strict';
const Dex = require... |
// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/**
* @name: S15.10.4.1_A3_T4;
* @section: 15.10.4.1;
* @assertion: let P be the empty string if pattern is undefined;
* @description: RegExp is new RegExp(undefined);
*/
__re = new RegE... |
import fs from 'fs-extra'
import path from 'path'
import _ from 'lodash'
import * as paths from '../../paths'
import * as log from '../log'
import * as Remove from '../../util/remove';
const buildAssetsDir = "$assets"
const processAsset = function(object, key, buildPath) {
const assetPath = object[key]
log.pend... |
/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra
*/
var compareLocations = require("./compareLocations");
var debugId = 1000;
function Chunk(name, module, loc) {
this.id = null;
this.ids = null;
this.debugId = debugId++;
this.name = name;
this.modules = [];
this.en... |
/**
* Copyright (c) UNA, Inc - https://una.io
* MIT License - https://opensource.org/licenses/MIT
*
* @defgroup Market Market
* @ingroup UnaModules
*
* @{
*/
function BxMarketEntry(oOptions) {
this._sActionsUri = oOptions.sActionUri;
this._sActionsUrl = oOptions.sActionUrl;
this._sObjName = oOp... |
/**
* @author Richard Davey <rich@photonstorm.com>
* @copyright 2014 Photon Storm Ltd.
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
*/
/**
* Time constructor.
*
* @class Phaser.Time
* @classdesc This is the core internal game clock. It manages the elapsed t... |
angular.module('noSocket', []).service('noSocket', [
'$rootScope', '$http', '$q', '$timeout', 'noLogger', function($rootScope, $http, $q, $timeout, Logger) {
var apply, host, initialized, isListening, listeners, load, open, scope, socket, wrap;
scope = null;
socket = null;
initialized = false;
ope... |
/**
* @typedef {object} Phaser.Types.Loader.FileTypes.AudioSpriteFileConfig
*
* @property {string} key - The key of the file. Must be unique within both the Loader and the Audio Cache.
* @property {string} jsonURL - The absolute or relative URL to load the json file from. Or a well formed JSON object to use instead... |
if (process.env.NODE_ENV === 'production') {
module.exports = require('./configureStore.production') // eslint-disable-line global-require
} else {
module.exports = require('./configureStore.development') // eslint-disable-line global-require
}
|
!function(e,r){"object"==typeof exports?module.exports=exports=r(require("./core"),require("./sha256"),require("./sha224"),require("./hmac")):"function"==typeof define&&define.amd?define(["./core","./sha256","./sha224","./hmac"],r):r(e.CryptoJS)}(this,function(e){return e.HmacSHA224}); |
// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/**
* @name: S10.1.5_A2.3_T3;
* @section: 10.1.5, 15.1;
* @assertion: Global object properties have attributes { DontEnum };
* @description: Global execution context - Constructor Pro... |
var Checker = require('../../../lib/checker');
var expect = require('chai').expect;
var reportAndFix = require('../../lib/assertHelpers').reportAndFix;
describe('rules/disallow-spaces-in-generator', function() {
var checker;
beforeEach(function() {
checker = new Checker();
checker.registerDefau... |
beforeEach(function() {
this.addMatchers({
toBeAnInstanceOf: function(constructor) {
return this.actual.constructor && this.actual.constructor == constructor;
},
toBeAFunction: function() { return typeof(this.actual) == 'function'; },
toHaveBeenCalledNTimes: function(callCount) { return callCo... |
var Test =
/*#__PURE__*/
function () {
"use strict";
function Test() {
babelHelpers.classCallCheck(this, Test);
}
babelHelpers.createClass(Test, [{
key: "test",
set: function set(val) {
this._test = val;
}
}]);
return Test;
}();
|
/**
* @author mrdoob / http://mrdoob.com/
*/
Menubar.File = function ( editor ) {
var container = new UI.Panel();
container.setClass( 'menu' );
var title = new UI.Panel();
title.setClass( 'title' );
title.setTextContent( 'File' );
container.add( title );
var options = new UI.Panel();
options.setClass( 'op... |
// Sentinel value passed to base constructors to skip invoking this.init.
var populating = {};
function makeClass(base, newProps) {
var baseProto = base.prototype;
var ownProto = Object.create(baseProto);
var newStatics = newProps.statics;
var populated;
function constructor() {
if (!popul... |
var Utils = require("./../utils")
, DataTypes = require('./../data-types')
, Helpers = require("./helpers")
, Transaction = require("../transaction")
module.exports = (function() {
var HasOne = function(srcDAO, targetDAO, options) {
this.associationType = 'HasOne'
this.source ... |
"use strict";
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard").default;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _jsxRuntime = req... |
var webpack = require("../../../../");
module.exports = {
plugins: [
new webpack.ContextReplacementPlugin(/context-replacement.a$/, "new-context", true, /^replaced$/)
]
};
|
// # Tag API
// RESTful API for the Tag resource
var Promise = require('bluebird'),
_ = require('lodash'),
fs = require('fs'),
pipeline = require('../utils/pipeline'),
globalUtils = require('../utils'),
apiUtils = require('./utils'),
models = require('../models'),
errors = require('../errors... |
/*
* /MathJax/jax/output/HTML-CSS/autoload/annotation-xml.js
*
* Copyright (c) 2012 Design Science, Inc.
*
* Part of the MathJax library.
* See http://www.mathjax.org for details.
*
* Licensed under the Apache License, Version 2.0;
* you may not use this file except in compliance with the Lic... |
version https://git-lfs.github.com/spec/v1
oid sha256:bfcdc048660ce007d9a981e0c9df61068a675f9233d61df522f923d20ba154e9
size 924
|
"use strict";
var isCallable = require("./object/is-callable");
module.exports = function (value) {
try {
if (value && isCallable(value.toString)) return value.toString();
return String(value);
} catch (e) {
return "[Non-coercible (to string) value]";
}
};
|
/*
Highcharts JS v6.1.1 (2018-06-27)
Support for parallel coordinates in Highcharts
(c) 2010-2017 Pawel Fus
License: www.highcharts.com/license
*/
(function(e){"object"===typeof module&&module.exports?module.exports=e:e(Highcharts)})(function(e){(function(b){function e(a){var c=this.series&&this.series.chart,k=... |
/*jslint regexp: true */
var _ = require('lodash'),
colors = require('colors'),
config = require('../config'),
path = require('path'),
when = require('when'),
hbs = req... |
// DATA_TEMPLATE: empty_table
/*
* NOTE: There are some differences in this zero config script for server-side
* processing compared to the other data sources. The main reason for this is the
* difference in how the server-side processing does it's filtering. Also the
* sorting state is always reset on each draw.
... |
/*
* Copyright (c) 2013 Adobe Systems Incorporated. All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the right... |
define("examples/todo/1.0.0/main-debug", [ "backbone-debug", "./views/app-debug", "$-debug", "underscore-debug", "./views/todos-debug", "./common-debug", "./collections/todos-debug", "./vendor/backbone.localStorage-debug", "./models/todo-debug", "./routers/router-debug" ], function(require) {
var Backbone = require... |
pc.AudioSourceComponentData = function AudioSourceComponentData() {
// serialized
this.enabled = true;
this.assets = [];
this.activate = true;
this.volume = 1;
this.pitch = 1;
this.loop = false;
this['3d'] = true;
this.minDistance = 1;
this.maxDistance = 10000;
t... |
version https://git-lfs.github.com/spec/v1
oid sha256:636a0a34d377f3c8ace0108972a27bbff56d37cf445024796c2aa7350f45781e
size 2316
|
/*
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'colordialog', 'nl', {
clear: 'Wissen',
highlight: 'Actief',
options: 'Kleuropties',
selected: 'Geselecteerde kleur',
title: 'Selectee... |
/* vim:set ts=2 sw=2 sts=2 expandtab */
/*jshint asi: true newcap: true undef: true es5: true node: true devel: true
forin: true */
/*global define: true setTimeout: true */
!(typeof define === "undefined" ? function ($) { $(require, exports, module) } : define)(function (require, exports, module, undefined) ... |
define('p3/layer/nls/globalWSObject_sl',{
'dijit/nls/loading':{"loadingState":"Nalaganje ...","errorState":"Oprostite, prišlo je do napake.","_localized":{}}
,
'dijit/nls/common':{"buttonOk":"V redu","buttonCancel":"Prekliči","buttonSave":"Shrani","itemClose":"Zapri","_localized":{}}
}); |
/*
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'horizontalrule', 'en', {
toolbar: 'Insert Horizontal Line'
});
|
/*
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'maximize', 'es', {
maximize: 'Maximizar',
minimize: 'Minimizar'
});
|
define(['./keys'], function (keys) {
// Internal helper to generate functions for escaping and unescaping strings
// to/from HTML interpolation.
function createEscaper(map) {
var escaper = function(match) {
return map[match];
};
// Regexes for identifying a key that needs to be escaped.
var... |
define(function( require, exports, module ){
var d = require( './d' );
require( './e' );
module.exports = d;
});
|
var ShapedScripts =
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
/******/ // The require function
/******/ function __webpack_require__(moduleId) {
/******/ // Check if module is in cache
/******/ if(installedModules[moduleId])
/******/ ... |
"use strict";
var __extends = (this && this.__extends) || function (d, b) {
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
var ts = require("typescript");
var Lint = requi... |
/**
* @author Richard Davey <rich@photonstorm.com>
* @copyright 2014 Photon Storm Ltd.
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
*/
/**
* Game constructor
*
* Instantiate a new <code>Phaser.Game</code> object.
* @class Phaser.Game
* @classdesc This is wh... |
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate... |
var Dispatcher = require('flux-dispatcher');
var FluxStore = require('flux-store');
var CloneDeep = require('lodash/lang/cloneDeep');
var Constants = require('./Constants');
var ParseValidation = require('../../helpers/parseValidation');
var ActionTypes = Constants.ActionTypes;
var Store = FluxStore.extend({
di... |
/**
* This test checks for regressions on the route stack manipulation for Express apps.
*/
'use strict'
var test = require('tap').test
var request = require('request')
var helper = require('../../lib/agent_helper.js')
test("Express 4 + express-enrouten compatibility test", function (t) {
t.plan(2)
var agent =... |
/**
* Created by gnoix on 2016/4/15.
*/
var fs = require('fs');
var handleDir = function(dir,res){
fs.readdir(dir, function (err, files) {
res.end(files.toString());
})
}
module.exports = handleDir; |
/**
* ag-grid - Advanced Data Grid / Data Table supporting Javascript / React / AngularJS / Web Components
* @version v16.0.0
* @link http://www.ag-grid.com/
* @license MIT
*/
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var rowNode_1 = require("../../entities/rowNode");
var utils_1... |
/**
* @license Highcharts JS v6.0.5 (2018-01-31)
*
* (c) 2014 Highsoft AS
* Authors: Jon Arild Nygard / Oystein Moseng
*
* License: www.highcharts.com/license
*/
'use strict';
(function(factory) {
if (typeof module === 'object' && module.exports) {
module.exports = factory;
} else {
facto... |
// FIXME(ryyppy): Add Observable stuff
// -> https://github.com/SBoudrias/Inquirer.js/#reactive-interface
// Currently, if you are using Observables, you need to : any suffix
// the questions input for now
declare module 'inquirer' {
declare class BottomBar {
constructor(opt?: { bottomBar: string }): BottomBar;
... |
/**
* Ajax Queue Plugin
*
* Homepage: http://jquery.com/plugins/project/ajaxqueue
* Documentation: http://docs.jquery.com/AjaxQueue
* http://www.onemoretake.com/2009/10/11/ajaxqueue-and-jquery-1-3/
* Patched version from: http://luke.dashjr.org/programs/bitcoin/w/Bitcoin-Poker-Room.git/blob_plain/HEAD:/roo... |
version https://git-lfs.github.com/spec/v1
oid sha256:7f63090d28bb488148c0bc1a9340995e84f9aa74aedd40e2e503a08b064bef92
size 7688
|
'use strict';
// (C) 1995-2013 Jean-loup Gailly and Mark Adler
// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin
//
// This software is provided 'as-is', without any express or implied
// warranty. In no event will the authors be held liable for any damages
// arising from the use of this software.
//
// Permission i... |
var breadcrumbInstance = (
<Breadcrumb slash>
<Breadcrumb.Item href="http://www.amazeui.org">首页</Breadcrumb.Item>
<Breadcrumb.Item href="http://www.amazeui.org">分类</Breadcrumb.Item>
<Breadcrumb.Item active>内容</Breadcrumb.Item>
</Breadcrumb>
);
React.render(breadcrumbInstance, mountNode);
|
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
Object.defineProperty(exports, "default", {
enumerable: true,
get: function () {
return _white.default;
}
});
var _white = babelHelpers.interopRequireDefault(require("white"));
|
(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.adapter = f()}... |
// flow-typed signature: 2e984c1eac11e294ae03eedf59c26c42
// flow-typed version: <<STUB>>/redux-logger_v^2.7.4/flow_v0.37.4
/**
* This is an autogenerated libdef stub for:
*
* 'redux-logger'
*
* Fill this stub out by replacing all the `any` types.
*
* Once filled out, we encourage you to share your work with ... |
/*jslint evil: true, browser: true, immed: true, passfail: true, undef: true, newcap: true*/
/*global console, _FirebugCommandLine, easyXDM, window, escape, unescape, isHostObject, undef, _trace, domIsReady, emptyFn, namespace */
//
// easyXDM
// http://easyxdm.net/
// Copyright(c) 2009-2011, Øyvind Sean Kinsey, ... |
/*!
* Angular Material Design
* https://github.com/angular/material
* @license MIT
* v0.11.2
*/
goog.provide('ng.material.components.datepicker');
goog.require('ng.material.components.icon');
goog.require('ng.material.components.virtualRepeat');
goog.require('ng.material.core');
(function() {
'use strict';
/*... |
/**
* @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
* For licensing, see LICENSE.md or http://ckeditor.com/license
*/
/**
* @fileOverview Defines the {@link CKEDITOR.tools} object that contains
* utility functions.
*/
( function() {
var functions = [],
cssVendorPrefix... |
var path = require('path');
var webpack = require('webpack')
module.exports = {
cache: true,
entry: './demo.js',
output: {
path: __dirname,
publicPath: '/',
filename: 'demo.build.js',
},
module: {
loaders: [{
test: /\.jsx?$/,
exclude: /(node_m... |
import Categories from './collection.js';
import './schema.js';
import './helpers.js';
import './callbacks.js';
import './parameters.js';
import './custom_fields.js';
import './subscriptions.js';
import './methods.js';
import './permissions.js';
import './published_fields.js';
export default Categories; |
/**
* Numeric cell validator
*
* @private
* @validator NumericValidator
* @param {*} value - Value of edited cell
* @param {*} callback - Callback called with validation result
*/
Handsontable.NumericValidator = function(value, callback) {
if (value === null) {
value = '';
}
callback(/^-?\d*(\.|\,)?\d*... |
exports.BattleFormatsData = {
genesect: {
inherit: true,
tier: 'OU'
},
kyurem: {
inherit: true,
tier: 'Uber'
},
kyuremblack: {
inherit: true,
tier: 'Uber'
},
deoxysdefense: {
inherit: true,
tier: 'Uber'
},
latios: {
inherit: true,
tier: 'Uber'
},
latias: {
inherit: true,
tier: 'Uber'
... |
//! moment.js locale configuration
//! locale : Tibetan [bo]
//! author : Thupten N. Chakrishar : https://github.com/vajradog
import moment from '../moment';
var symbolMap = {
'1': '༡',
'2': '༢',
'3': '༣',
'4': '༤',
'5': '༥',
'6': '༦',
'7': '༧',
'8': '༨',
'9': '༩',
... |
/**
* @ngdoc service
* @name customerAddressDisplayBuilder
*
* @description
* A utility service that builds CustomerAddressDisplay models
*/
angular.module('merchello.models').factory('customerAddressDisplayBuilder',
['genericModelBuilder', 'CustomerAddressDisplay',
function(genericModelBuilder, Custome... |
'use strict';
var gulp = require('gulp');
// inject bower components
gulp.task('wiredep', function () {
var wiredep = require('wiredep').stream;
return gulp.src('src/index.html')
.pipe(wiredep({
directory: 'bower_components',
exclude: [/bootstrap-sass-official/, /bootstrap.js/, /bootst... |
/*!
* inflection
* Copyright(c) 2011 Ben Lin <ben@dreamerslab.com>
* MIT Licensed
*
* @fileoverview
* A port of inflection-js to node.js module.
*/
( function ( root ){
/**
* @description This is a list of nouns that use the same form for both singular and plural.
* This list should remain... |
/*!
* jQuery JavaScript Library v2.0.2 -sizzle,-css,-effects,-offset,-dimensions
* http://jquery.com/
*
* Includes Sizzle.js
* http://sizzlejs.com/
*
* Copyright 2005, 2013 jQuery Foundation, Inc. and other contributors
* Released under the MIT license
* http://jquery.org/license
*
* Date: 2013-06-03T15:25Z
... |
"use strict";
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = createMixins;
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
var _extends3 = _inter... |
/**
* This Code was created on April 2014
* If you find any bug, unreadable code, messy code, potential bug code, etc
* Please contact me at:
* Ega Radiegtya / radiegtya@yahoo.co.id / 085641278479
*/
MeteorisController = RouteController.extend({
deps: new Tracker.Dependency,
id: null,
criteria: {},
... |
// Invoke 'strict' JavaScript mode
'use strict';
// Load the correct configuration file according to the 'NODE_ENV' variable
module.exports = require('./env/' + process.env.NODE_ENV + '.js'); |
version https://git-lfs.github.com/spec/v1
oid sha256:1eec0c34cb654522feac36adf9570154284cbf3345472cc81fe0f2e7775abc63
size 670
|
/**
* @author zz85 / http://www.lab4games.net/zz85/blog
* @author alteredq / http://alteredqualia.com/
*
* Text = 3D Text
*
* parameters = {
* font: <THREE.Font>, // font
*
* size: <float>, // size of the text
* height: <float>, // thickness to extrude text
* curveSegments: <int>, // number of points on ... |
/*!
* EmojioneArea v3.2.6
* https://github.com/mervick/emojionearea
* Copyright Andrey Izman and other contributors
* Released under the MIT license
* Date: 2017-11-11T03:58Z
*/
window = ( typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {} );
... |
/*
* Copyright (C) 2009 280 North Inc. All Rights Reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditio... |
version https://git-lfs.github.com/spec/v1
oid sha256:ab094a22124e961b80a1b71bde90e809f91ae055cb454eabe0f6d8acecb0b4f4
size 37232
|
import React from 'react';
import {
StyleSheet,
View,
Text,
Dimensions,
TouchableOpacity,
} from 'react-native';
import MapView from 'react-native-maps';
const { width, height } = Dimensions.get('window');
const ASPECT_RATIO = width / height;
const LATITUDE = 37.78825;
const LONGITUDE = -122.4324;
const LA... |
/**
* @license Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
* For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'placeholder', 'ja', {
title: 'プレースホルダのプロパティ',
toolbar: 'プレースホルダを作成',
name: 'プレースホルダ名',
invalidName: 'プレースホルダは空欄にできません。また、[, ], <... |
'use strict';
/* jshint -W030 */
/* jshint -W110 */
var chai = require('chai')
, expect = chai.expect
, Utils = require(__dirname + '/../../lib/utils')
, Support = require(__dirname + '/support');
describe(Support.getTestDialectTeaser('Utils'), function() {
describe('removeCommentsFromFunctionString', functio... |
/*jshint undef: false, unused: false, indent: 2*/
/*global angular: false */
'use strict';
angular.module('demoApp').service('BoardService', ['$modal', 'BoardManipulator', function ($modal, BoardManipulator) {
return {
removeCard: function (board, column, card) {
if (confirm('Are You sure to Delete?')) {... |
/*!
* Inferno.createClass v3.3.0
* (c) 2017 Dominic Gannaway'
* Released under the MIT License.
*/
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory(require('inferno-component')) :
typeof define === 'function' && define.amd ? define(['inferno-c... |
version https://git-lfs.github.com/spec/v1
oid sha256:934737a6dad7ae5ac84898826deb9230548fde0cd0bdd07d4900c25178438cad
size 4415
|
'use strict'
class SyntaxError extends Error {
constructor (err) {
super(err)
this.name = 'Syntax Error'
this.message = ''
this.message += `${this.name} \n\n(${err.line}:${err.column}) ${err.reason}`
this.message += `\n\n${err.showSourceCode()}\n`
this.stack = false
}
}
module.exports =... |
define({
"instruction": "建立將在此 widget 中顯示的內容。",
"defaultContent": "在此新增文字、連結和小圖形。",
"productVersion": "產品版本: ",
"kernelVersion": "核心版本: "
}); |
try {
var autobahn = require('autobahn');
} catch (e) {
// when running in browser, AutobahnJS will
// be included without a module system
}
var connection = new autobahn.Connection({
url: 'ws://127.0.0.1:8080/ws',
realm: 'crossbardemo'}
);
connection.onopen = function (session) {
function add_comp... |
/*global require, module*/
var fs = require("fs");
var crypto = require("crypto");
module.exports = {
add: function (fileName, resource, callback) {
if (resource.etag) { return callback(); }
this.generate(fileName, function (err, etag) {
if (err) { return callback(err); }
re... |
/**
* Generated bundle index. Do not edit.
*/
export * from './public_api';
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHJpbWVuZy1wYW5lbG1lbnUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvYXBwL2NvbXBvbmVudHMvcGFuZWxtZW51L3ByaW1lbmctcGFuZWxtZW51LnRzIl0sIm5hbWVzIjpbXSwi... |
/**
* @fileOverview GridFS is a tool for MongoDB to store files to the database.
* Because of the restrictions of the object size the database can hold, a
* facility to split a file into several chunks is needed. The {@link GridStore}
* class offers a simplified api to interact with files while managing the
* chun... |
(function(exports) {
"use strict";
function isArray(obj) {
if (obj !== null) {
return toString.call(obj) === "[object Array]";
} else {
return false;
}
}
function isObject(obj) {
if (obj !== null) {
return toString.call(obj) === "[object Object]";
} else {
return fa... |
(function webpackUniversalModuleDefinition(root, factory) {
if(typeof exports === 'object' && typeof module === 'object')
module.exports = factory(require("react"), require("mobx"));
else if(typeof define === 'function' && define.amd)
define(["react", "mobx"], factory);
else if(typeof exports === 'object')
exp... |
/*global ko*/
// Github repository: https://github.com/One-com/knockout-dragdrop
// License: standard 3-clause BSD license https://raw.github.com/One-com/knockout-dragdrop/master/LICENSE
(function (factory) {
if (typeof define === "function" && define.amd) {
// AMD anonymous module with hard-coded dependen... |
/*
Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
/**
* @fileOverview Defines the {@link CKEDITOR.lang} object, for the
* Vietnamese language.
*/
/**#@+
@type String
@example
*/
/**
* Constains t... |
import React from "react"
import { useStaticQuery, graphql } from "gatsby"
import Img from "gatsby-image"
/*
* This component is built using `gatsby-image` to automatically serve optimized
* images with lazy loading and reduced file sizes. The image is loaded using a
* `useStaticQuery`, which allows us to load the ... |
jQuery(function($){
$.datepicker.regional['kn-IN'] = {"Name":"kn-IN","closeText":"Close","prevText":"Prev","nextText":"Next","currentText":"Today","monthNames":["ಜನವರಿ","ಫೆಬ್ರವರಿ","ಮಾರ್ಚ್","ಎಪ್ರಿಲ್","ಮೇ","ಜೂನ್","ಜುಲೈ","ಆಗಸ್ಟ್","ಸೆಪ್ಟಂಬರ್","ಅಕ್ಟೋಬರ್","ನವೆಂಬರ್","ಡಿಸೆಂಬರ್",""],"monthNamesShort":["ಜನವರಿ","ಫೆಬ್ರವರಿ","ಮಾರ್... |
/**
* @author Richard Davey <rich@photonstorm.com>
* @copyright 2014 Photon Storm Ltd.
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
*/
/**
* @class Phaser.Button
*
* @classdesc Create a new `Button` object. A Button is a special type of Sprite that is set-u... |
/**
* @author George https://github.com/georgiee
* @author Richard Davey <rich@photonstorm.com>
* @copyright 2015 Photon Storm Ltd.
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
*/
/**
* Draws a P2 Body to a Graphics instance for visual debugging.
* Ne... |
define(
//begin v1.x content
{
"HKD_displayName": "dòlar de Hong Kong",
"CHF_displayName": "franc suís",
"JPY_symbol": "JP¥",
"CAD_displayName": "dòlar canadenc",
"HKD_symbol": "HK$",
"CNY_displayName": "iuan renmimbi xinès",
"USD_symbol": "US$",
"AUD_displayName": "dòlar australià",
"JPY_displayName": "ien ja... |
'use strict';
var utils = require('./utils');
var support = require('./support');
var nodejsUtils = require('./nodejsUtils');
var GenericWorker = require('./stream/GenericWorker');
/**
* The following functions come from pako, from pako/lib/utils/strings
* released under the MIT license, see pako https://github.com... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.