code
stringlengths
2
1.05M
/* MIT License http://www.opensource.org/licenses/mit-license.php Author Tobias Koppers @sokra */ "use strict"; const toErrorCode = err => `var e = new Error(${JSON.stringify(err)}); e.code = 'MODULE_NOT_FOUND';`; exports.module = request => `!(function webpackMissingModule() { ${exports.moduleCode(reques...
app.controller('TurmaListController', ['$http', '$location', '$window', '$routeParams', function($http, $location, $window, $routeParams){ var self = this; var init = function(){ /** * * active/deactive seletores de menu dentro do arquivo > home-top.jsp * */ $...
version https://git-lfs.github.com/spec/v1 oid sha256:fa2ee584e8d1ce095e3420cdbac12ff82e9267e6e948746d4ca014b72083856b size 460
'use strict'; const bootstrap = require('./server/bootstrap'); const register = require('./server/register'); const contentTypes = require('./server/content-types'); const services = require('./server/services'); const routes = require('./server/routes'); const controllers = require('./server/controllers'); module.ex...
require("./PNodePermissions"); PNode = Proto.clone().newSlots({ protoType: "PNode", pdb: null, pid: 0, mRecord: null, sRecord: null, pRecord: null, permissions: null }).setSlots({ init: function() { this._pdb = null; this._pid = 0; this._mRecord = PRecord.clone(); this._sRecord = PRecord.clone(); t...
////////////////////////////////////////////////////////////////////////// // // // This is a generated file. You can view the original // // source in your browser if your browser supports source maps. // // ...
var http = require('http'); // if this file is needed, then we have to put this 'require' in an 'if' statement so that we handle both development and deployment environments // var keys = require('./server/config/keys.js'); var RateLimiter = require('limiter').RateLimiter; var limiter = new RateLimiter(10, 1000); va...
(function() { jQuery.extend({ cropper: function(file, width, height, callback) { callback = callback || $.noop; var photo = new Image(); var reader = new FileReader(); var canvas = document.createElement('canvas'); var context = canva...
import { Template } from 'meteor/templating'; import s from 'underscore.string'; import { settings } from '../../../../settings'; import './livechatInstallation.html'; const latestVersion = '1.0.0'; Template.livechatInstallation.helpers({ oldScript() { const siteUrl = s.rtrim(settings.get('Site_Url'), '/'); ret...
var $ = require('jquery'), _ = require('underscore'), Backbone = require('backbone'), moment = require('moment-timezone'), Mustache = require('mustache'), config = require('../config.js'), util = require('../util.js'); var tripStopListItemTemplate = $('#tripStopListItemTemplate').html(); Mustache.parse(tri...
// Copyright 2009 the Sputnik authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /** * @name: S7.8.4_A7.1_T4; * @section: 7.8.4; * @assertion: EscapeSequence :: UnicodeEscapeSequence :: u HexDigit HexDigit HexDigit HexDigit; * @description: UnicodeEscapeSeq...
/** * Account * @namespace kalendr.accounts.services */ (function () { angular .module('kalendr.accounts.services') .factory('Account', Account); Account.$inject = ['$http']; /** * @namespace Account */ function Account($http) { /** * @name Account * @desc The factory to be ret...
version https://git-lfs.github.com/spec/v1 oid sha256:a77b8d9b25fc01f50288bd45a784f6e289030bf1984c8afbd2690ef44903a0c8 size 817
var get = Ember.get; var set = Ember.set; var run = Ember.run; var Person, store, array; module("unit/model - DS.Model", { setup: function() { store = createStore(); Person = DS.Model.extend({ name: DS.attr('string'), isDrugAddict: DS.attr('boolean') }); }, teardown: function() { r...
// Copyright 2009 the Sputnik authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /** * @name: S11.13.2_A4.3_T2.5; * @section: 11.13.2, 11.5.3; * @assertion: The production x %= y is the same as x = x % y; * @description: Type(x) is different from Type(y) a...
!function (name, definition) { if (typeof module != 'undefined') module.exports = definition(); else if (typeof define == 'function' && typeof define.amd == 'object') define(definition); else this[name] = definition(); }('filtr', function () { if (!module) { var module = {}; } /** * filtr - MongoDB in...
/** * CountingString example * by Daniel Shiffman. * * This example demonstrates how to use a IntDict to store * a number associated with a String. Java HashMaps can also * be used for this, however, this example uses the IntDict * class offered by Processing's data package for simplicity * and added funct...
/** * Created by sercand on 09/06/15. */ "use strict"; var bcrypt = require('bcrypt'); module.exports.generateHash = function (password, done) { bcrypt.genSalt(10, function (err, salt) { if (err) { return done(err); } bcrypt.hash(password, salt, done); }); }; module.exp...
version https://git-lfs.github.com/spec/v1 oid sha256:5e652e9061ca4fc24b2051e5af983f727413cdbdb3c506e12b58a93ef987059b size 4066
const webpack = require('webpack'); const webpackMerge = require('webpack-merge'); const coreconfig = require('./webpack.core'); const constants = require('./constants'); const helpers = require('./helpers'); module.exports = webpackMerge(coreconfig, { entry: { 'polyfills': [ './src/polyfills.ts' ], 'vendor...
import express from 'express' import Mongo from '../server.js'; import config from '../config.js'; import collectionUtil from '../collectionUtil.js'; import utilities from '../utilities.js'; import bodyParser from 'body-parser'; var router = express.Router(); router.get('/',(req,res) => { //find user and test pass...
/** * Imports */ import test from 'tape' import from '.' /** * </> tests */ test('</> should work', t => { })
import React from 'react'; import ScatterPlotObject from '../../templates/ScatterPlotObject'; //import d3ParserObj from '../../d3ParserObj'; export default (props) => { const toggleDropDown = props.toggleDropDown; const getScatterPlotAction = props.getScatterPlotAction; const toTemplate = props.toTemplate; con...
/** * Developer: Stepan Burguchev * Date: 8/19/2015 * Copyright: 2009-2016 Comindware® * All Rights Reserved * Published under the MIT license */ 'use strict'; import MembersCollection from '../collections/MembersCollection'; import MembersListView from '../views/MembersListView'; import UserS...
/*global jQuery, moment, _, Keystone, alert, confirm, require */ jQuery(function($) { // Import var queryfilterUtil = require('queryfilter'), querystringUtil = require('querystring'); // Cache items var $filters = $('#list-filters'); /** Create Item */ $('.btn-create-item').click(function(){ var $form =...
/*! * PopConfirm 0.2 * http://ifnot.github.io/PopConfirm/ * * Use jQuery & Bootstrap * http://jquery.com/ * http://getbootstrap.com/ * * Copyright 2014 Anael Favre and other contributors * Released under the MIT license * https://raw.github.com/AnaelFavre/PopConfirm/master/LICENCE * * Thanks to contributors : * Thomas...
import path from 'path'; import fse from 'fs-extra'; import merge from 'merge'; import recursiveRead from 'recursive-readdir'; import RovrFile from './rovr-file.js'; import RovrRenderer from './rovr-renderer/index.js'; import RovrLayouts from './rovr-layouts/index.js'; import RovrComponents from './rovr-components/inde...
export { publish } from 'rxjs/operators'; //# sourceMappingURL=publish.js.map
/** * lark - mvc.js * Copyright(c) 2014 mdemo(https://github.com/demohi) * MIT Licensed */ 'use strict'; module.exports.mvc = { path: 'example/models' };
var locals = require('../../node-app/config/locals'), devErrorHandler = require('errorhandler'), defaultHandler = require('./default'); function errorConfig(app) { app.use(defaultHandler.notFound); if (locals.isDevMode) { app.use(devErrorHandler()); } else { app.use(defaultHandler.internalError)...
import {set} from 'cerebral/operators' import {input, state} from 'cerebral/tags' import {form, changeField} from 'cerebral-forms' import createUser from './signals/createUser' import signIn from './signals/signIn' import signInAnonymous from './signals/signInAnonymous' import signOut from './signals/signOut' export d...
"use_strict"; var Shira; (function (Shira, $) { (function (ScrollFix) { /** * @constructor * * @param {HTMLElement} element DOM element that is going to be fixed * @param {Object} options option map */ ScrollFix.Watcher = function (element, options)...
import React from 'react'; import { mount } from 'enzyme'; import Input from '..'; import Form from '../../form'; const { TextArea } = Input; const delay = timeout => new Promise(resolve => setTimeout(resolve, timeout)); describe('Input', () => { it('should support maxLength', async () => { const wrapper = mo...
var path = require('path'); var webpack = require('webpack'); var config = require('./webpack.config.js'); config.plugins = [ new webpack.optimize.DedupePlugin(), new webpack.optimize.OccurenceOrderPlugin(), new webpack.optimize.UglifyJsPlugin({ compress: { warnings: false } }) ] module.exports...
/** * Module dependencies */ var actionUtil = require('../actionUtil'); var _ = require('@sailshq/lodash'); /** * Create Record * * post /:modelIdentity * * An API call to find and return a single model instance from the data adapter * using the specified criteria. If an id was specified, just the instance wi...
/** * @author Richard Davey <rich@photonstorm.com> * @copyright 2018 Photon Storm Ltd. * @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License} */ var HasValue = require('../../../utils/object/HasValue'); /** * [description] * * @function Phaser.Tilemaps.Parser...
import createSvgIcon from './utils/createSvgIcon'; import { jsx as _jsx } from "react/jsx-runtime"; export default createSvgIcon( /*#__PURE__*/_jsx("path", { d: "M21.99 2H2v16h16l4 4-.01-20zM18 14H6v-2h12v2zm0-3H6V9h12v2zm0-3H6V6h12v2z" }), 'CommentSharp');
$(function() { console.warn("警告"); console.error("錯誤"); console.group("群組1"); console.log("文字%s", "文字"); console.log("數字%d", 100); console.groupEnd(); console.dir(document); console.log("%c測試文字", "font-size: 32px; color: red"); console.count("計數器"); //console.log($0); //$0~$4 })...
// PLEASE DO NOT EDIT THIS CODE (it's called in package.json) // this code tells our server when you deploy. var http = require('http'), qs = require('querystring'), os = require('os'); var params = { os: os.type(), release: os.release(), teamcode: "EKRkHFR3I4vxME8j", }; http.get({ host: 'nodeknockout.c...
var PromisePipe = require('../src/PromisePipe')(); var sinon = require('sinon'); var Promise = require('es6-promise').Promise; var expect = require('chai').expect; describe('PromisePipe with 3 functions when called', function(){ var context = {}; var data1 = 1; var data2 = 2; var data3 = 3; var fn1 = sinon.stub()...
'use strict'; var domainRefComponents = require('../assets/domain_ref_components'); var createGraphDiv = require('../assets/create_graph_div'); var destroyGraphDiv = require('../assets/destroy_graph_div'); var Plotly = require('@lib/index'); var Lib = require('@src/lib'); var getSVGElemScreenBBox = require('../assets/...
file:/home/charlike/dev/glob-fs/fixtures/a/s1.js
var restler = require('restler'); var cheerio = require('cheerio'); var xzqh_url = 'http://www.mca.gov.cn/article/sj/xzqh/2020/2020/202003301019.html'; var overseas_url = 'https://zh.wikipedia.org/zh/%E6%8C%89%E5%A4%A7%E6%B4%B2%E6%8E%92%E5%88%97%E7%9A%84%E5%9B%BD%E5%AE%B6%E5%88%97%E8%A1%A8'; exports.update = function...
/* * throttle.js: Stream for throttling events over a given time interval. * * (C) 2012, Nodejitsu Inc. * */ var util = require('util'), ReadWriteStream = require('../common/read-write-stream'); // // ### function Throttle (length|options, interval) // #### @options {Object} Options containing max and inter...
/** * Copyright <%= year %> Telerik AD * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agr...
// Github: https://github.com/shdwjk/Roll20API/blob/master/GroupInitiative/GroupInitiative.js // By: The Aaron, Arcane Scriptomancer // Contact: https://app.roll20.net/users/104025/the-aaron const GroupInitiative = (() => { // eslint-disable-line no-unused-vars const scriptName = "GroupInitiative"; c...
var hammerhead = window.getTestCafeModule('hammerhead'); var browserUtils = hammerhead.utils.browser; var testCafeAutomation = window.getTestCafeModule('testCafeAutomation'); var HoverAutomation = testCafeAutomation.Hover; var MouseOptions = testCafeAutomation.get('../../test-run/commands/options').MouseOpt...
'use strict'; /** * `list` type prompt */ var _ = require('lodash'); var chalk = require('chalk'); var cliCursor = require('cli-cursor'); var figures = require('figures'); var Base = require('./base'); var observe = require('../utils/events'); var Paginator = require('../utils/paginator'); class CheckboxPrompt exte...
const bitcoin = require('bitcoinjs-lib') const bip32 = require('bip32') const Chain = require('../chain') const test = require('tape') const fixtures = require('./fixtures/chain') const createKeccakHash = require('keccak') function segwitAddr (node) { const p2wpkh = bitcoin.payments.p2wpkh({ pubkey: node.publicK...
$(document).ready(function () { $('.important-text[data-action=show]').each(function () { var importantText = $(this); var label = importantText.attr('data-label'); $('.' + label).addClass('hidden'); importantText.click(function () { $('.' + label).removeClass('hidd...
/* eslint-disable */ // npm install rollup-plugin-typescript2 typescript --save-dev import typescript from 'rollup-plugin-typescript2' // ------------------------------------------------------------------------------------------ // formats // ---------------------------------------------------------------------------...
var ioc = require('../helper/ioc.node'), config = require("../helper/config.node"), main = require('../main.node'), windowHelper = require('../helper/window.node'), classHelper = require('../helper/class.node'), utilityHelper = require('../helper/utilities.node'); module.exports = functio...
(function($) { var cultures = $.cultures, en = cultures.en, standard = en.calendars.standard, culture = cultures["br-FR"] = $.extend(true, {}, en, { name: "br-FR", englishName: "Breton (France)", nativeName: "brezhoneg (Frañs)", language: "br", numberF...
const {Expression, Product} = require('../ast.js'); function canTransform(selections) { if (selections.length !== 1) { return false; } let selection = selections[0]; if (['Expression', 'Product'].includes(selection.first.type) && selection.length === 1) { selection = selection.first.chi...
'use strict'; var kbox = require('../lib/kbox.js'); var internet = kbox.util.internet; describe('internet.js', function() { describe('#check()', function() { it('should return true when a site is reachable.', function(done) { this.timeout(10 * 1000); return internet.check() .then(done); ...
//@flow export const a = [] export const b = [1, , 3]; export const c = [1, ...b]; export const d = 42;
drawGaulBoundary = function(data_path, data_points, div_id) { var path_data, points_data; path_data = data_path; points_data = data_points; // This is left outside because d3.json is asyncrhonous. // If we leave theese parameters outside, the page will load // them and then load the SV...
if (typeof(COMMON_JS) === 'undefined') { var COMMON_JS = true; $(document).on('click', '.btn-history-back', function() { history.back(); }); $(document).on('click', '.alertclose' , function() { $(this).closest('.alert').hide(); }); $(document).ready(function(){ window...
/** * keep bower.json version field synchronized with package.json */ module.exports = function(grunt) { grunt.registerMultiTask('update_bower_version', 'keep bower.json version field synchronized with package.json', function() { var bowerJson = grunt.file.readJSON('bower.json'), pkg = grunt.file.readJS...
// Change as necessary module.exports = { // Port Express will listen to PORT: 3000, // Rethinkdb configuration DB_HOST: '127.0.0.1', DB_PORT: 28015, DB_DATABASE: 'jsdata', // Login won't work without these GITHUB_CLIENT_ID: '', GITHUB_CLIENT_SECRET: '', GITHUB_CALLBACK_URL: '', // Default to ...
import{popperGenerator,detectOverflow}from"./index.js";import eventListeners from"./modifiers/eventListeners.js";import popperOffsets from"./modifiers/popperOffsets.js";import computeStyles from"./modifiers/computeStyles.js";import applyStyles from"./modifiers/applyStyles.js";var defaultModifiers=[eventListeners,popper...
import React, { Component } from 'react' import { withRouter } from 'react-router' import { initGA, logPageView } from '../utils/analytics' class ScrollIntoView extends Component { componentWillMount () { if (!window.GA_INTIALIZED) { initGA() window.GA_INTIALIZED = true logPageView() } } ...
var express = require('express') , router = express.Router() , Stream = require('../models/stream') , StreamSetting = require('../models/stream_setting') const Logger = require('ioant-logger'); router.get('/', function(req, res) { let config = Stream.getConfiguration(); StreamSetting.get( req.query.sid, ...
import { Meteor } from 'meteor/meteor'; import { Mongo } from 'meteor/mongo'; import { check, Match } from 'meteor/check'; import { resourceManager } from '/server/imports/threading/resourceManager'; import { dbLog } from '/db/dbLog'; import { dbTaxes } from '/db/dbTaxes'; import { dbVariables } from '/db/dbVariables'...
const express = require('express') const mongoose = require('mongoose') const helmet = require('helmet') const bodyParser = require('body-parser') const morgan = require('morgan') const bluebird = require('bluebird') const config = require('./config') const routes = require('./routes') const app = express() mongoose...
// Copyright 2009 the Sputnik authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /** * @name: S11.13.2_A2.2_T9; * @section: 11.13.2, 16; * @assertion: Operator uses PutValue; * @description: If Type(LeftHandSideExpression) is not Reference, throw Reference...
const should = require('should'); const sinon = require('sinon'); const Promise = require('bluebird'); const testUtils = require('../../../utils'); const configUtils = require('../../../utils/configUtils'); const markdownToMobiledoc = require('../../../utils/fixtures/data-generator').markdownToMobiledoc; const url = r...
import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( <React.Fragment><path fill="none" d="M0 0h24v24H0V0z" /><g><path d="M3 12c0 2.21.91 4.2 2.36 5.64L3 20h6v-6l-2.24 2.24C5.68 15.15 5 13.66 5 12c0-2.61 1.67-4.83 4-5.65V4.26C5.55 5.15 3 8.27 3 12zm8 5h2v-2h-2v2z...
/** * An Angular module that gives you access to the browsers local storage * @version v0.2.2 - 2015-05-29 * @link https://github.com/grevory/angular-local-storage * @author grevory <greg@gregpike.ca> * @license MIT License, http://www.opensource.org/licenses/MIT */ (function ( window, angular, undefined ) { /*j...
var gulp = require('gulp'); var gutil = require('gulp-util') var babel = require('gulp-babel'); var del = require('del'); var fs = require('fs'); var eslint = require('gulp-eslint'); var webpack = require('webpack'); var webpackConfig = require('./webpack.config.js'); var WebpackDevServer = require("webpack-dev-server"...
import _extends from "@babel/runtime/helpers/esm/extends"; import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose"; import { render as enzymeRender } from 'enzyme'; import * as React from 'react'; import { RenderContext } from './RenderMode'; let warnedOnce = false; /** * G...
import React from 'react'; import Form from 'react-bootstrap/lib/Form'; import memoize from 'lru-memoize'; import ReduxTextField from 'components/Form/Horizontal/ReduxTextField'; import {Field, reduxForm} from 'redux-form'; import Button from 'react-bootstrap/lib/Button'; import Modal from 'react-bootstrap/lib/Modal'; ...
/** * @author Richard Davey <rich@photonstorm.com> * @copyright 2019 Photon Storm Ltd. * @license {@link https://opensource.org/licenses/MIT|MIT License} */ /** * Compute a random position vector in a spherical area, optionally defined by the given radius. * * @function Phaser.Math.RandomXYZ * @s...
(function (Ω) { "use strict"; var Strip, RayCastMap; RayCastMap = Ω.Map.extend({ strips: null, init: function (sheet, data, stripWidth, fov) { this._super(sheet, data); this.strips = []; this.setStripWidth(stripWidth || 2); this.setFOV(fov || 60); }, setStripWidth: function (stripWidth...
(function(){ var ab2jsonWorker = (dataBuffer) => JSON.parse(String.fromCharCode.apply(null, new Uint16Array(dataBuffer))); var json2abWorker = (jsonData) => { var strJson = JSON.stringify(jsonData); var buf = new ArrayBuffer(strJson.length * 2); var uInt8Array = new Uint16Array(buf); for (var i = 0, strLen = st...
angular.module('portal') .directive('barsLegend', ['$window', function ($window) { return { restrict: 'EA', scope: { data: '=' }, link: function (scope, element, attrs) { var legendClass = attrs.legendClass || 'bar-legend', width = attrs.legendWidth || 300, boxHeight = ...
"use strict"; var debug = require('../../lib/debug'); var defineComponent = require('../../lib/component'); var utils = require('../../lib/utils'); describe('(Core) utils', function () { describe('toArray()', function () { it('converts object to an array', function () { var result; function testF...
const layerMatrix = require('../misc/layer-matrix') const fixType2Conflicts = (g, layers) => { const dummy = {} const order = {} for (const u of g.vertices()) { const node = g.vertex(u) dummy[u] = node.dummy order[u] = node.order } for (let i = 1; i < layers.length; ++i) { const h1 = layers...
"use strict"; var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); Object.defineProperty(exports, "__esModule", { value: true }); exports.default = void 0; var _objectWithoutPropertiesLoose2 = ...
'use strict'; var redux = require('redux'); var turnOrder = require('./turn-order-a0fbfef0.js'); var reducer = require('./reducer-fbd0ac74.js'); var rfc6902 = require('rfc6902'); var initialize = require('./initialize-0afdca72.js'); var base = require('./base-3237f024.js'); /** * Creates a new match metadata object...
'use strict'; var lint = require('./_lint'); var file = lint.file('space-before-brace.scss'); describe('space before brace', function () { it('[include: true]', function (done) { lint.test(file, { 'space-before-brace': 1 }, function (data) { lint.assert.equal(3, data.warningCount); done()...
/* Copyright (c) 2004-2011, The Dojo Foundation All Rights Reserved. Available via Academic Free License >= 2.1 OR the modified BSD license. see: http://dojotoolkit.org/license for details */ //>>built define("dojo/cldr/nls/hebrew",{root:{"dateFormatItem-Ehm":"E h:mm a","days-standAlone-short":"Sun Mon Tue Wed Thu ...
version https://git-lfs.github.com/spec/v1 oid sha256:8c77acb82642b9be9e2c2b5cb5d8d064714a54ce275cc7e83345772eb7100a13 size 12317
/** * Module dependencies */ var innerJoin = require('../../../lib/offshore/query/integrator/innerJoin'); var assert = require('assert'); var should = require('should'); var _ = require('lodash'); describe('innerJoin', function() { // Clear the require cache Object.keys(require.cache).forEach(function (moduleP...
/** * Load all of the core Spark Vue components. */ require('./../common/errors'); require('./../nav'); require('./../auth/registration/simple'); require('./../auth/registration/subscription'); require('./../settings/dashboard'); require('./../settings/dashboard/profile/basics') require('./../settings/dashboard/subs...
// Copyright (c) 2013 M-Way Solutions GmbH // http://github.com/mwaylabs/The-M-Project/blob/absinthe/MIT-LICENSE.txt /** * @module M.ToolbarView * * @type {*} * @extends M.View */ M.ToolbarView = M.View.extend({ /** * The type of the view * @private * @type {String} */ _type: 'M.Toolb...
module.exports={A:{A:{"132":"H D G E A B FB"},B:{"132":"C p z J L N I"},C:{"1":"0 3 5 6 8 9 t u v w x y CB AB","33":"2 N I O P Q R S T U V W X Y Z a c d e f g h i j k l m n o M q r s","132":"4 aB F K H D G E YB SB","292":"A B C p z J L"},D:{"1":"0 3 5 6 8 9 r s t u v w x y CB AB MB cB GB b HB IB JB KB","132":"F K H D G...
version https://git-lfs.github.com/spec/v1 oid sha256:b394fd58b2171488b8aa8ed759068c5f86d36eade2b50a6ccae115e2e50eed8b size 1985
'use strict'; var fs = require('fs'), _ = require('lodash'), mongoose = require('mongoose'), helpers = require('./helpers'), settings = require('./../config').files, enabled = settings.enable; function FileManager(options) { this.core = options.core; if (!enabled) { return; } ...
'use strict'; var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; function _interopRequireDefault(obj) { return ...
/**! * * Copyright (c) 2015-2017 Cisco Systems, Inc. See LICENSE file. */ 'use strict'; /** * @description Set of regex patterns to compile once and use throughout the * app. All non-prefixed patterns have start/end characters to ensure exact * matches. Patterns prefixed with "exec" are the same as their non-pr...
// Copyright (c) 2013 M-Way Solutions GmbH // http://github.com/mwaylabs/The-M-Project/blob/absinthe/MIT-LICENSE.txt M.Themes.registerTemplateForTheme(M.Themes.DEFAULT_THEME, 'switch-layout', '<div id="m-main" class="m-perspective"><div class="m-page m-page-1"><div data-childviews="content_page1" class="content-wrappe...
import FontIcon from './FontIcon'; export default FontIcon;
// // Copyright (c) Microsoft and contributors. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // http://www.apache.org/licenses/LICENSE-2.0 // // Unl...
/** * 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. * * @flow */ import type {Thenable} from 'shared/ReactTypes'; import type {Fiber} from 'react-reconciler/src/ReactInternalTypes'; i...
version https://git-lfs.github.com/spec/v1 oid sha256:5ef1130a3176851e7750bb8ae8c68f2664fe00bcb9a0665b592d853fba0435fe size 6106
exports.level = { "goalTreeString": "{\"branches\":{\"master\":{\"target\":\"C4\",\"id\":\"master\"},\"bugFix\":{\"target\":\"C2\",\"id\":\"bugFix\"}},\"commits\":{\"C0\":{\"parents\":[],\"id\":\"C0\",\"rootCommit\":true},\"C1\":{\"parents\":[\"C0\"],\"id\":\"C1\"},\"C2\":{\"parents\":[\"C1\"],\"id\":\"C2\"},\"C3\":{...
import page from 'page'; import React from 'react'; import Immutable from 'immutable'; import classNames from 'classnames'; import Action from '../actions'; import UserAction from '../actions/user'; import SettingsAction from '../actions/settings'; import BroadcastAction from '../actions/broadca...
/** Console X * http://github.com/deadlyicon/consolex.js * * By Jared Grippe <jared@jaredgrippe.com> * * Copyright (c) 2009 Jared Grippe * Licensed under the MIT license. * * consolex avoids ever having to see javascript bugs in browsers that do not implement the entire * firebug console suit * */...
( function () { "use strict"; window.navigator.getUserMedia = window.navigator.getUserMedia || window.navigator.webkitGetUserMedia || window.navigator.mozGetUserMedia; function initiateVideo(room){ var localVideo = document.querySelector('#myVideo'); var remoteVideo = document.querySelec...