code
stringlengths
2
1.05M
var booksApp = angular.module("booksApp", []); booksApp.controller("MainCtrl", function($scope, Models) { $scope.books = Models.books(); $scope.levels = Models.levels(); $scope.selectedBook = null; $scope.selectBook = function(book) { $scope.selectedBook = book; }; $scope.createBook...
const mapStyle = [ { featureType: "administrative", elementType: "all", stylers: [ { saturation: "-100", }, ], }, { featureType: "administrative", elementType: "geometry", stylers: [{ visibility: "off" }], }, { featureType: "administrative.country", elem...
import Ember from 'ember'; export default Ember.Route.extend({ setupController: function(controller, model){ controller.set('query', controller.get('search')); controller.set('displaySearchTips', false); } });
var util = require('util'); should = require('should'), JSUS = require('./../jsus').JSUS; var qId; var foo = 1; var foo2 = 2; var q; describe('QUEUE', function(){ before(function() { q = JSUS.getQueue(); }); it('#getQueue() should get a new Queue object', function() { ('object' ==...
"use strict"; var setup = require("./setup"); var db = require("../index"); var expect = require("chai").expect; var DbUtil = require("./db-util"); var util = require("./util"); var conti = require("conti"); var m = require("./model"); function initDb(done){ this.timeout(10000); util.withConnect(function(conn, done...
// Pages service used to communicate Pages REST endpoints (function () { 'use strict'; angular .module('pages') .factory('PagesService', PagesService); PagesService.$inject = ['$resource']; function PagesService($resource) { return $resource('/api/pages/:pageId', { pageId: '@_id' }, { ...
var async = require('async'); var _ = require('lodash'); function removePollResult (args, done) { var seneca = this; var plugin = args.role; var ENTITY_NS = ('cd/polls_results'); var resultId = args.resultId; seneca.make$(ENTITY_NS).remove$({id: resultId}, done); } module.exports = removePollResult;
var Collector = require("./lib/collector"); var Subscriber = require("./lib/subscriber"); var logger = require("./helper/logger"); module.exports = { Collector: Collector, Subscriber: Subscriber, logger: logger };
/* A simple drawing application for touch devices. Loïc Fontaine - http://github.com/lfont - MIT Licensed */ define({ "root": { "xx-xx": "Default", "en-us": "English", "fr-fr": "Français" }, "fr-fr": true });
'use strict'; /* Directives */ app.directive('appVersion', ['version', function (version) { return function (scope, elm, attrs) { elm.text(version); }; }]);
var search = module.exports = function(arr, value, min, max) { if (arr.length === 0) return -1; // Defaults if (!min) min = 0; if (!max) max = arr.length - 1; var index = min + Math.floor((max - min) / 2); var val = arr[index]; if (val == value) return index; if (max - min == 0) return -1; if (val <...
$(function() { return alert('Page loaded'); });
let Verify = require('./Verify'); class Api { /** * Create a new API instance. * * @param {Mix} Mix */ constructor(Mix) { this.Mix = Mix; } /** * Register the Webpack entry/output paths. * * @param {string|Array} entry * @param {string} output */ ...
var SymbolDraw = require('../../chart/helper/SymbolDraw'); var zrUtil = require('zrender/lib/core/util'); var numberUtil = require('../../util/number'); var List = require('../../data/List'); var markerHelper = require('./markerHelper'); function updateMarkerLayout(mpData, seriesModel, api)...
// Copyright 2018-2021, University of Colorado Boulder /** * Checkbox for the quadratic term, y = ax^2 * * @author Chris Malley (PixelZoom, Inc.) */ import merge from '../../../../phet-core/js/merge.js'; import MathSymbols from '../../../../scenery-phet/js/MathSymbols.js'; import GQColors from '../../common/GQCol...
var files = [ [ "example", "dir_cfafba98a580ce4b62f8a6fa96d7cbb0.html", "dir_cfafba98a580ce4b62f8a6fa96d7cbb0" ], [ "inc", "dir_bfccd401955b95cf8c75461437045ac0.html", "dir_bfccd401955b95cf8c75461437045ac0" ], [ "src", "dir_68267d1309a1af8e8297ef4c3efbcdba.html", "dir_68267d1309a1af8e8297ef4c3efbcdba" ] ];
(function(angular) { 'use strict'; angular.module('httpu.urlbuilder', []) .factory('huURLBuilderInterceptor', huURLBuilderInterceptor) .factory('huURLBuilderFactory', huURLBuilderFactory); huURLBuilderInterceptor.$inject = ['$injector', '$q']; function huURLBuilderInterceptor($injector, $q) { ...
#! /usr/bin/env node 'use strict'; var cc = require('./lib/utils'); var join = require('path').join; var deepExtend = require('deep-extend'); var etc = '/etc'; var win = process.platform === "win32"; var home = win ? process.env.USERPROFILE : process.env.HOME; module.exports = function (name, defaults, argv, parse) {...
Meteor.startup(() => { var roles = _.pluck(Roles.getAllRoles().fetch(), 'name'); if (roles.indexOf('livechat-agent') === -1) { Roles.createRole('livechat-agent'); } if (roles.indexOf('livechat-manager') === -1) { Roles.createRole('livechat-manager'); } if (RocketChat.models && RocketChat.models.Permissions) {...
/** * This file describes type definitions, purely used for autocompletion and intellisense * * @typedef {{ * startingYear: string, * numberOfYears: string, * currency: string, * currencyMagnitude: string, * numberOfDecimals: string, * startingCapital: string, * * VATRate: string, * corporat...
const sanitizeHtml = require('sanitize-html'); const Chat = require('./../rtm-client'); const ChatModels = require('./../models/chats'); // Controller to send messages from client to slack api const chatController = { sendMessageToSlack(req, res) { // Will need to get user slack token at some point console....
// ==UserScript== // @grant unsafeWindow // @grant GM_xmlhttpRequest // @grant GM_openInTab // @grant GM_registerMenuCommand // @grant GM_getValue // @grant GM_setValue // @grant GM_setClipboard // @grant GM_info // @run-at docum...
// @flow import { css } from 'styled-components'; import { hover } from '../../utils/hover'; import { sassRgba } from '../../utils/sassRgba'; export function buttonOutlineVariant( color: string, colorHover: string = '#fff' ) { return css` color: ${color}; background-color: transparent; background-i...
//>>excludeStart("norequireExclude", pragmas.norequireExclude); require(['debuggify.logger', 'transports/console']); //>>excludeEnd("norequireExclude");
'use strict'; describe('Controller: AppCtrl', function () { // load the controller's module beforeEach(module('fraudGuiApp')); var MainCtrl, scope; // Initialize the controller and a mock scope beforeEach(inject(function ($controller, $rootScope) { scope = $rootScope.$new(); MainCtrl = $contro...
/** * Copyright (C) 2012 Jonathan Scott * 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 rights * to use, copy, modify, merge, publis...
function FieldAuditor(opts){ var self = this; //Form that has inputs to track in it; will also be where the tracking inputs will be appended self.formName = opts["formName"]; if (!self.formName) { throw "FieldAuditor: formName option must be specified"; } //Selector to determine what types of inputs...
import React, { Component, PropTypes } from 'react'; import parsePath from 'history/lib/parsePath'; import Location from '../../core/Location'; function isLeftClickEvent(event) { return event.button === 0; } function isModifiedEvent(event) { return !!(event.metaKey || event.altKey || event.ctrlKey || event.shiftK...
"use strict"; var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); Object.defineProperty(exports, "__esModule", { value: true }); exports.default = void 0; var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); var _jsxRuntime = require("react/jsx-runtime")...
/*global console*/ var AutoCompleteView = require('../ampersand-autocomplete-view'); var FormView = require('ampersand-form-view'); var Model = require('ampersand-state').extend({ props: { mbid: 'string', name: 'string', listeners: 'string' }, derived: { id: function() { return this.name; ...
/** * Fable Settings - Zookeeper Add-on * * @license MIT * * @author Jason Hillier <jason@hillier.us> * @module Fable Settings Zookeeper */ var libZookeeper = require('node-zookeeper-client'); var libAsync = require('async'); var libDeasync = require('deasync'); var CONNECTION_TIMEOUT = 1500; var FableSettingsZookeep...
/** * xdata公共接口 * @author levin * @version 1.0.0 * @module OXAPI * @class OXAPI.XData * @static */ (function($){ var p={},pub={},today = new Date(), maxDateRange = 62,//最大时间范围 maxDateCountPerTime = 10;//单次服务器请求的时间范围 /* * 获取日期字符串 * @method OXAPI.XData.getDateTimeStr * @par...
Ember.FEATURES["ember-testing-lazy-routing"] = true; App = Ember.Application.create({ rootElement: '#qunit-fixture' }); App.Router.map(function() { this.route('welcome'); }); App.setupForTesting(); module("Routing", { setup: function() { App.reset(); App.injectTestHelpers(); }, teardown: function()...
/// AMPjs Javascript Library /// The MIT License (MIT) /// author Yoshihito Fujiwara /// source https://bitbucket.org/yoshihitofujiwara/ampjs /// Copyright (c) 2014 Yoshihito Fujiwara (function(root, AMP){ // 'use strict'; /*---------------------------------------------------------------------- @constructor...
(function() { var ACCESSOR, CoffeeScript, Module, REPL_PROMPT, REPL_PROMPT_CONTINUATION, SIMPLEVAR, Script, autocomplete, backlog, completeAttribute, completeVariable, enableColours, error, getCompletions, inspect, readline, repl, run, stdin, stdout; CoffeeScript = require('./coffee-script'); readline = require...
import React from 'react' import { observer } from 'mobx-react' import styles from './DrawerLabel.css' const DrawerLabel = ({ name, value, edittable }) => ( <div class={styles.root}> <div class={styles.name}>{name}</div> <div class={styles.value}>{value}</div> </div> ) export default observer(DrawerLabel)
var appSettings = require('../settings/app.json'); module.exports = { options: { dest: appSettings.dir.dist }, html: <% if(this.includeJade) { %> appSettings.dir.dist + '/index.html' <% } else { %> appSettings.dir.app + '/index.html' <% } %> };
import React from 'react'; export default () => fn(survey => { return <div />; });
/** * Created by llan on 2017/5/15. */ (function ($) { $('#my-slider').sliderPro({ width: '100%', height: 500, autoplay: true, buttons: false, arrows: true }); })(jQuery);
/* Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.md or http://ckeditor.com/license */ CKEDITOR.plugins.setLang("specialchar","nl",{euro:"Euro-teken",lsquo:"Linker enkel aanhalingsteken",rsquo:"Rechter enkel aanhalingsteken",ldquo:"Linker dubbel aanhalingste...
'use strict'; // MODULES // var betaincinv = require( 'compute-betaincinv/lib/ibeta_inv_imp.js' ); // QUANTILE // /** * FUNCTION: quantile( p, d1, d2 ) * Evaluates the quantile function for a F distribution with numerator degrees of freedom `d1` and denominator degrees of freedom `d2` at a probability `p`. * * @pa...
var PhotoStore = require('./photo'); var FilterStore = require('./filter'); var stores = { PhotoStore: new PhotoStore(), FilterStore: new FilterStore(), }; module.exports = stores;
'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); var _ru_RU = require('gregorian-calendar-format/lib/locale/ru_RU'); var _ru_RU2 = _interopRequireDefault(_ru_RU); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } exports.default = { toda...
jQuery(document).ready(function ($) { var options = { $AutoPlay: true, //[Optional] Whether to auto play, to enable slideshow, this option must be set to true, default value is false $AutoPlaySteps: 1, //[Optional] Steps to go for each navig...
// Regular expression that matches all symbols in the `Nl` category as per Unicode v8.0.0: /[\u16EE-\u16F0\u2160-\u2182\u2185-\u2188\u3007\u3021-\u3029\u3038-\u303A\uA6E6-\uA6EF]|\uD809[\uDC00-\uDC6E]|\uD800[\uDD40-\uDD74\uDF41\uDF4A\uDFD1-\uDFD5]/;
/* Copyright (C) 2011-2014 Mattias Ekendahl. Used under MIT license, see full details at https://github.com/developedbyme/dbm/blob/master/LICENSE.txt */ dbm.registerClass("dbm.constants.webgl.WebglFilterTypes", null, function(objectFunctions, staticFunctions, ClassReference) { //console.log("dbm.constants.webgl.WebglF...
var $ = require('jquery'), analytics = require('ga-browser')(), tether = require('tether'), bootstrap = require('bootstrap'), UAParser = require('ua-parser-js'), autocomplete = require('jquery-autocomplete') var config = require('./config.js'); var exists = function(tag) { return $(tag).length > 0 } var ...
/** * Open Payments Cloud Application API * Open Payments Cloud API * * OpenAPI spec version: 1.0.0 * * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. * */ (function(root, factory) { if (ty...
export const breakpoints = { sm: 576, md: 786, lg: 992, xl: 1200, }; export const media = (key) => { return (style) => `@media (max-width: ${breakpoints[key]}px) { ${style} }`; };
/** * Application core * * exposes Module, Page and Widget. * * TODO: Provide pub/sub functionality * **/ requirejs.config({ baseUrl: '/', paths: { 'jquery': 'js/dependencies/jquery', 'underscore': 'js/dependencies/underscore', 'backbone': 'js/dependencies/backbone', 'bootstrap': 'js/dependen...
Intranet.controller('PersonalOfficeChatController',['$http', '$scope', '$paginator', function($http, $scope, $paginator) { container = $('#conversation'); messageContainer = $('#write-message'); $scope.officesIdArray = DATA_ID.officesid; $scope.paginator = $paginator; $scope.postsPerPage = 10; $scope....
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var index_1 = require("../index"); /** * Property in entity can be marked as Embedded, and on persist all columns from the embedded are mapped to the * single table of the entity where Embedded is used. And on hydration all columns which sup...
import React,{ Component } from 'react'; export default class Options extends Component { constructor(props) { super(props); this.state = { datas: this.props.datas, } this.editor = null; this.editorBody = null; this.editorHtml = null; } componentDidMount() { console.log('compo...
'use strict'; (function (window, document, videojs) { /** * Cookie access functions. * From: https://developer.mozilla.org/en-US/docs/Web/API/document.cookie */ var cookies = { getItem: function (sKey) { if (!sKey) { return null; } return decodeURIComponent( document.cookie.repl...
var _ = require('lodash'); var norma = require('norma'); var jsonic = require('jsonic'); // string args override object args module.exports = function parse_pattern(instance,args,normaspec,fixed) { args = norma('{strargs:s? objargs:o? moreobjargs:o? '+(normaspec||'')+'}', args) try { return _.e...
export class TaskGroupServiceClient { static beforeRemove(context) { var groupId = context.currentData()._id; var taskInGroup = Tasks.find({groupId: groupId}).fetch(); var taskCount = taskInGroup.length; bootbox.confirm({ title: "You are about to delete a task group, are you sure ?", m...
define([ 'vue', 'text!components/headerLogo/headerLogo.tpl', 'jquery', 'common/directive/setStyle', 'common/directive/setParentStyle', 'common/directive/setChildStyle' ],function(vue,tpl,$){ var component = vue.extend({ components : { }, template : tpl, data : function(){ return { id : '', hea...
$( document ).ready(function() { $('.agency-tooltip').tooltip() } );
'use strict' const _ = require('lodash') const util = require('../util') const crypto = require('tendermint-crypto') /** * Transactions component * @see {@link https://monax.io/docs/documentation/db/latest/specifications/api/#broadcast-tx} * @type {ErisDB.Transactions} */ module.exports = class Transactions { ...
var utils = require('./init'); var expect = require('chai').expect; var SMTCTag = require('../../models/tag'); var Report = require('../../models/report'); var async = require('async'); var id1; var id2; function createTags(done) { SMTCTag.create([ { name: 'Not so important tag' }, { name: 'Very important t...
app.directive('project', function(){ return { restrict: 'E', scope: { proj: '=' }, templateUrl: 'js/directives/project.html' } });
// Generated on 2014-12-13 using generator-angularfire 0.8.2-7 'use strict'; // # Globbing // for performance reasons we're only matching one level down: // 'test/spec/{,*/}*.js' // use this if you want to recursively match all subfolders: // 'test/spec/**/*.js' module.exports = function (grunt) { // Load grunt ta...
import React, { Component, PropTypes } from 'react'; import Button from './Button.js'; import { yellow600 } from 'material-ui/styles/colors'; class FinishButton extends Component { render() { return ( <Button name="exit_to_app" color={yellow600} onClick={() => this.props.onClick()} /> ); } } FinishB...
/** * @author Richard Davey <rich@photonstorm.com> * @copyright 2018 Photon Storm Ltd. * @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License} */ /** * Moves the given element to the bottom of the array. * The array is modified in-place. * * @functio...
define(['jquery'], function($) { "use strict"; function save(id, value) { var deferred = $.ajax({ type: "POST", url: 'save/' + id, dataType: 'json', contentType: 'application/json', data: value, processData: false, }); ...
var fs = require('fs'); var readable = fs.createReadStream('./cat.js'); readable.pipe(process.stdout);
module.exports = function(grunt) { 'use strict'; var sources = [ 'src/js/ext/*.js', 'src/js/guide.js', 'src/js/guide-optionable.js', 'src/js/guide-extension.js', 'src/js/guide-tour.js', 'src/js/guide-spot.js', 'src/js/extensions/*.js' ], readPkg = function() { return grunt.file...
(function() { 'use strict'; angular.module('bidit') .factory('ItemService', function() { return [{ id: "#13434234", title: "item 1", description: "Lenovo 8GB i7", price: 260, remaining: "32h:5m:4s" }, ...
import React from "react" import { graphql } from "gatsby" export default ({ data }) => { if (!data?.allTest?.nodes) { throw new Error("Wrong data: " + JSON.stringify(data)) } return <div>{JSON.stringify(data)}</div> } export const query = graphql` query($fooBarArray: [String!], $sort: TestSortInput, $cou...
/*! * Pusher JavaScript Library v6.0.1 * https://pusher.com/ * * Copyright 2017, Pusher * Released under the MIT licence. */ var Pusher = /******/ (function(modules) { // webpackBootstrap /******/ // The module cache /******/ var installedModules = {}; /******/ /******/ // The require function /******/ funct...
$(document).ready(function(){ var currentPosition = 0; var slideWidth = 560; var slides = $('.slide'); var numberOfSlides = slides.length; // Remove scrollbar in JS $('#slidesContainer').css('overflow', 'hidden'); // Wrap all .slides with #slideInner div slides .wrapAll('<div id="slideInner"></div...
/** * Menu */ $(document).ready(function(){ var touch = $('#touch-menu'); var menu = $('#main-menu'); $(touch).on('click', function(e) { e.preventDefault(); menu.slideToggle(); }); $(window).resize(function(){ var w = $(window).width(); if(w > 767 && menu.is(':hidden')) { menu.removeAttr('sty...
search_result['431']=["topic_00000000000000D5_attached_props--.html","LocaleHelper Attached Properties",""];
// Generated on 2014-10-16 using generator-angular 0.9.8 'use strict'; // # Globbing // for performance reasons we're only matching one level down: // 'test/spec/{,*/}*.js' // use this if you want to recursively match all subfolders: // 'test/spec/**/*.js' module.exports = function (grunt) { // Load grunt tasks au...
var dialogsCommon = require("./dialogs-common"); var appmodule = require("application"); var types = require("utils/types"); global.moduleMerge(dialogsCommon, exports); function createAlertDialog(options) { var alert = new android.app.AlertDialog.Builder(appmodule.android.currentContext); alert.setTitle(options...
function main(){ console.log("Hello, world!"); } setInterval(main, 250);
/* Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.md or http://ckeditor.com/license */ CKEDITOR.plugins.setLang( 'colorbutton', 'sr', { auto: 'Аутоматски', bgColorTitle: 'Боја позадине', colors: { '000': 'Black', '800000': 'Maroon', '8B4513': '...
define([ 'expect', 'views/footer' ], function(expect, FooterView) { 'use strict'; describe('FooterView', function() { describe('#template', function() { it('should render template', function() { FooterView.prototype.autoRender = false; var footerView = new FooterView(); ...
'use strict'; //Setting up route angular.module('questionresponses').config(['$stateProvider', function($stateProvider) { // Questionresponses state routing $stateProvider. state('listQuestionresponses', { url: '/questionresponses', templateUrl: 'modules/questionresponses/views/list-questionresponses.clie...
/** * Collects all requests that didnt match any route * @author Johan Kanefur <johan.canefur@gmail.com> * @param {Error} err Error from middleware before * @param {Request} req Express request object * @param {Response} res Express response object * @param {Function} next Function to next ...
function httpRequest(url, cb) { var xhr = new XMLHttpRequest(); xhr.open("GET", url, true); xhr.onreadystatechange = function () { if (xhr.readyState == 4) { cb(xhr.responseText); }; } xhr.send(); } function showWeather(result) { result = JSON.parse(result); var ...
//= require jquery-ui/core //= require jquery-ui/widget //= require jquery-ui/mouse /*! * jQuery UI Draggable 1.11.0 * http://jqueryui.com * * Copyright 2014 jQuery Foundation and other contributors * Released under the MIT license. * http://jquery.org/license * * http://api.jqueryui.com/draggable/ */ (functi...
(function(_document, _script, _facebook_sdk) { var facbook_script, facbook_js = _document.getElementsByTagName(_script)[0]; if (_document.getElementById(_facebook_sdk)) return; facbook_script = _document.createElement(_script); facbook_script.id = _facebook_sdk; facbook_script.src = "//connect.facebook.net/v...
/*! * ui-grid - v4.8.5 - 2020-09-14 * Copyright (c) 2020 ; License: MIT */ (function () { angular.module('ui.grid').config(['$provide', function($provide) { $provide.decorator('i18nService', ['$delegate', function($delegate) { $delegate.add('pt', { headerCell: { aria: { de...
'use strict'; angular.module('iamTheAnswerApp') .factory('Auth', function Auth($location, $rootScope, Session, User, $cookieStore, TwitterSession, $http) { // Get currentUser from cookie $rootScope.currentUser = $cookieStore.get('user') || null; $cookieStore.remove('user'); function setCoo...
/* --- name: DropZone.HTML5 description: A DropZone module. Handles uploading using the HTML5 method license: MIT-style license authors: - Mateusz Cyrankiewicz - Juan Lago requires: [DropZone] provides: [DropZone.HTML5] ... */ DropZone.HTML5 = new Class({ Extends: DropZone, initialize: function (options...
/** * @copyright Copyright 2013 <a href="http://www.extpoint.com">ExtPoint</a> * @author <a href="http://www.affka.ru">Vladimir Kozhin</a> * @license MIT */ /** * @class Jii.app.Application * @extends Jii.base.Module * @property {Jii.components.Db} db * @property {Jii.components.HttpServer} http * @property {...
import RCGroup from '../../RCGroup' import TransformGroup from '../../meshes/TransformGroup' function wrapper(Name, args) { const params = [Name].concat(args) return Name.bind(...params) } class ChemGroup extends RCGroup { constructor( geoParams, selection, colorer, mode, transforms, pol...
search_result['2427']=["topic_00000000000005D0.html","SendInvitationCommand.EndDate Property",""];
/*! Element Plus v2.0.3 */ (function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : typeof define === 'function' && define.amd ? define(factory) : (global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.ElementPlusLocalePt...
/* Riot v4.8.6, @license MIT */ (function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) : typeof define === 'function' && define.amd ? define(['exports'], factory) : (global = global || self, factory(global.riot = {})); }(this, (function (exports) { 'use stric...
(function webpackUniversalModuleDefinition(root, factory) { if(typeof exports === 'object' && typeof module === 'object') module.exports = factory(require("react"), require("react-dom")); else if(typeof define === 'function' && define.amd) define(["react", "react-dom"], factory); else if(typeof exports === 'obje...
/** @license React vundefined * react.production.min.js * * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ (function(){'use strict';(function(c,y){"object"===typeof exports&&"undefin...
/*! JointJS v3.3.0 (2021-01-15) - JavaScript diagramming library This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/. */ this.joint = this.joint || {}; this.joint.shapes = this.j...
/*! * DevExtreme (dx.messages.ja.js) * Version: 17.2.18 * Build date: Fri Dec 03 2021 * * Copyright (c) 2012 - 2021 Developer Express Inc. ALL RIGHTS RESERVED * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/ */ "use strict"; ! function(root, factory) { if ("function" === typeof define ...
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var ColorUtils_1 = require("./Utils/ColorUtils"); var Utils_1 = require("./Utils/Utils"); var Absorber = (function () { function Absorber(container, options, position) { var _a, _b; this.container = container; this....
/*! pako 2.0.1 https://github.com/nodeca/pako @license (MIT AND Zlib) */ (function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : typeof define === 'function' && define.amd ? define(factory) : (global = typeof globalThis !== 'undefined' ? globalThi...
/** * Tom Select v1.4.1 * Licensed under the Apache License, Version 2.0 (the "License"); */ import TomSelect from '../../tom-select.js'; /** * Plugin: "restore_on_backspace" (Tom Select) * Copyright (c) contributors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this * file ...
import{g as n}from"./p-e0b6c512.js";let e;const r=()=>{if("undefined"==typeof window)return new Map;if(!e){const n=window;n.Ionicons=n.Ionicons||{},e=n.Ionicons.map=n.Ionicons.map||new Map}return e},t=n=>{const e=r();Object.keys(n).forEach((r=>e.set(r,n[r])))},i=n=>{let e=u(n.src);if(e)return e;if(e=o(n.name,n.icon,n.m...
var test = require('tape'); var JWT = require('jsonwebtoken'); var secret = 'NeverShareYourSecret'; var server = require('./custom_parameters_server.js'); var cookie_options = '; Max-Age=31536000;'; //' Expires=Mon, 18 Jul 2016 05:29:45 GMT; Secure; HttpOnly'; // Those tests are the same as cookie-test and url-to...