code stringlengths 2 1.05M |
|---|
var searchData=
[
['write',['write',['../structJnomicsData.html#a0fd6cb964f57dfe73a263d247008494a',1,'JnomicsData']]]
];
|
//-------------------------------------------------------------------------------------------------------
// Copyright (C) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
//------------------------------------------------------... |
'use strict';
/**
* Create a markdown-formatted `<pre><code></code></pre>` snippet with or without lang.
*/
module.exports = ['var foo = parseInt(bar);', 'js']
|
module.exports = {
name: 'decode',
init: function(){
var router = basis.require('basis.router');
var type = basis.require('basis.type');
var catchWarnings = basis.require('./helpers/common.js').catchWarnings;
},
afterEach: function(){
route.destroy();
},
test: [
{
name: 'decodes pa... |
/**
* San
* Copyright 2016 Baidu Inc. All rights reserved.
*
* @file 主文件
* @author errorrik(errorrik@gmail.com)
* otakustay(otakustay@gmail.com)
* junmer(junmer@foxmail.com)
*/
(function (root) {
// 人工调整打包代码顺序,通过注释手工写一些依赖
// // require('./util/guid');
// // require('./util/empty');
... |
import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
import _defineProperty from "@babel/runtime/helpers/esm/defineProperty";
import _extends from "@babel/runtime/helpers/esm/extends";
import * as React from 'react';
import PropTypes from 'prop-types';
import clsx from 'clsx';
impo... |
/* jshint node: true */
'use strict';
module.exports = {
name: 'ember-cli-github-pages',
includedCommands: function() {
return {
'github-pages:commit': require('./lib/commands/commit')
};
}
};
|
var gulp = require('gulp');
var concat = require('gulp-concat');
var newer = require('gulp-newer');
var sourcemaps = require('gulp-sourcemaps');
var uglify = require('gulp-uglify');
var minifyCSS = require('gulp-minify-css');
var configJs = require('../config').vendorJs;
var configCss = require('../config').vendorCss;
... |
'use strict';
const common = require('../common');
const { Worker, parentPort } = require('worker_threads');
const fs = require('fs');
// Checks that terminating Workers does not crash the process if fs.watchFile()
// has active handles.
// Do not use isMainThread so that this test itself can be run inside a Worker.
... |
'use strict';
var Gpio = require('../').Gpio,
iv,
led = new Gpio(17, {mode: Gpio.OUTPUT});
iv = setInterval(function () {
led.trigger(100, 1);
}, 2);
setTimeout(function () {
led.digitalWrite(0);
clearInterval(iv);
}, 2000);
|
var mongoose = require('mongoose');
mongoose.connect('mongodb://heroku_app2952775:nuulb7icv8aafrr7n592uie793@ds031107.mongolab.com:31107/heroku_app2952775');
var app = require('../app'),
models = require('../models'),
common = require('./account/common'),
templates = require('../lib/templates'),
mail... |
module.exports = function(grunt) {
require('load-grunt-tasks')(grunt);
grunt.loadNpmTasks('grunt-simple-mocha');
grunt.loadNpmTasks('grunt-jsdoc');
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
jshint: {
options: {
curly: true,
eqeqeq: true,
eqnull: t... |
/**
* Update Checking Unit
*
* Makes a request to Ghost.org to request release & custom notifications.
* The service is provided in return for users opting in to anonymous usage data collection.
*
* Blog owners can opt-out of update checks by setting `privacy: { useUpdateCheck: false }` in their config file.
*/
... |
/*!
* align-text <https://github.com/jonschlinkert/align-text>
*
* Copyright (c) 2015, Jon Schlinkert.
* Licensed under the MIT License.
*/
'use strict';
var typeOf = require('kind-of');
var repeat = require('repeat-string');
var longest = require('longest');
module.exports = function alignText(val... |
var labelType, useGradients, nativeTextSupport, animate;
(function() {
var ua = navigator.userAgent,
iStuff = ua.match(/iPhone/i) || ua.match(/iPad/i),
typeOfCanvas = typeof HTMLCanvasElement,
nativeCanvasSupport = (typeOfCanvas == 'object' || typeOfCanvas == 'function'),
textSupport = native... |
import babel from 'rollup-plugin-babel';
import uglify from 'rollup-plugin-uglify';
import nodeResolve from 'rollup-plugin-node-resolve';
import { argv } from 'yargs';
const format = argv.format || argv.f || 'iife';
const compress = argv.uglify;
const babelOptions = {
exclude: 'node_modules/**',
presets: [['es201... |
var test = require('tape');
var extend = require('../ampersand-class-extend');
test('should extend a prototype', function (t) {
var P1 = function () {};
P1.extend = extend;
var mixin1 = {
method1: function () {
return 1;
}
};
var mixin2 = {
method2: function () ... |
/*************************************************
購読リストの整形。Subsの絞込みや、整形
*************************************************/
Subscribe = {};
// Template
Subscribe.Template = {
item : Template.get("subscribe_item"),
folder : Template.get("subscribe_folder")
};
// 複数のデータをロードしてもアイテムのデータを共通化する
Subscribe.Items... |
var celeri = require('../lib');
celeri.drawTree({
'home/':{
'network/':{
'apps/' :[
"cliqly",
"clove",
"team digest"
],
'public/': {
'git/':{
'some-project':[
'index.js'
]
},
'npm/':{
'some-project':['index.js']
}
}
}
},
'downloads/': {
'libcpp': [
... |
const _ = require('lodash');
const getContextObject = require('./context_object.js');
const urlUtils = require('../../server/lib/url-utils');
const settingsCache = require('../../server/services/settings/cache');
function getOgImage(data) {
const context = data.context ? data.context : null;
const contextObjec... |
/**
* Function that returns default values.
* Used because Object.assign does a shallow instead of a deep copy.
* Using [].push will add to the base array, so a require will alter
* the base array output.
*/
'use strict';
const path = require('path');
const srcPath = path.join(__dirname, '/../src');
const dfltPor... |
'use strict';
// ------------------------------------------------------------------------------
// Requirements
// ------------------------------------------------------------------------------
var rule = require('../rules/empty-controller');
var RuleTester = require('eslint').RuleTester;
var commonFalsePositives = r... |
var crypto = require('crypto')
var client = require('../boot/redis').getClient()
/**
* OneTimeToken
*
* OneTimeToken is an expiring (TTL) token class
* used for any process that requires an expiring
* token such as email verification and password
* reset.
*
* The constructor generates a random string suitable
... |
/*
Copyright (c) 2010-2012, iUI Project Members
See LICENSE.txt for licensing terms
(derived from Apple Sample code)
*/
function addVideoLoggers(vid)
{
/* add logVideoEvent for all events for HTML5 media element events */
vid.addEventListener('loadstart', function(evt) { logVideoEvent(evt,'#00... |
var assert = require('assert');
describe('options/remove-empty-rulesets (less):', function() {
beforeEach(function() {
this.filename = __filename;
});
it('Issue 201. Test 1', function() {
this.comb.configure({ 'remove-empty-rulesets': true });
this.shouldBeEqual('1.less', '1.expect... |
/*
* /MathJax/jax/output/SVG/fonts/TeX/AMS/Regular/MiscTechnical.js
*
* Copyright (c) 2009-2016 The MathJax Consortium
*
* 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
*
... |
const webpack = require('webpack')
const projectName = require('./package').name
module.exports = config => {
if (process.env.RELEASE)
config.singleRun = true
const customLaunchers = {
// Browsers to run on BrowserStack.
BS_Chrome: {
base: 'BrowserStack',
os: 'Windows',
os_version: '... |
define({
"_widgetLabel": "Svjesnost o situaciji",
"locate_incident": "Pronađi incident",
"reverse_geocoded_address": "Najbliža adresa",
"reverse_geocoded_error": "Nije dostupno",
"actionLabel": "Postavi lokaciju",
"drawPoint": "Nacrtaj točku",
"drawLine": "Nacrtaj liniju",
"drawPolygon": "Nacrtaj poligo... |
a=func();
b=z;
for (a++; i < 10; i++) { alert(i); }
var z=1;
g=2;
for (; i < 10; i++) { alert(i); }
var a = 2;
for (var i = 1; i < 10; i++) { alert(i); }
|
'use strict';
import { createHistory, useQueries } from 'history';
import Store from 'store-prototype';
import List from '../lib/List';
const history = useQueries(createHistory)();
let _location = null;
let _ready = false;
let _loading = false;
let _items = {};
let _itemsResultsClone = [];
const _list = new List(Ke... |
'use strict';
var BowerInstallTask = require('../../../lib/tasks/bower-install');
var MockUI = require('../../helpers/mock-ui');
var MockProject = require('../../helpers/mock-project');
var expect = require('chai').expect;
describe('bower install task', function() {
var bowerInstallTask;
... |
"use strict";
var slice = Array.prototype.slice;
var _isArray;
if (!Array.isArray) {
_isArray = function (x) {
return Object.prototype.toString.call(x) === "[object Array]";
};
} else {
_isArray = Array.isArray;
}
var isArray = _isArray;
exports.isArray = isArray;
function merge(hash, other) {
for (var pr... |
'use strict';
var Path = require('./Path');
var util = require('../../common');
function PathManager(paths) {
this.paths = [];
this.pathsByUrl = {};
this.deps = {};
this.pathNames = [];
util.each(paths, this.add, this);
}
PathManager.prototype = {
add: function(pathProps) {
var path = pathProps insta... |
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.Events = void 0;
const ClickEvent_1 = require("./ClickEvent");
const DivEvent_1 = require("./DivEvent");
const HoverEvent_1 = require("./HoverEvent");
class Events {
constructor() {
this.onClick = new ClickEvent_1.ClickEven... |
/**
* Returns true if one and only one of the conditions is true.
*
* @this {boolean} Left boolean operand.
* @param right Right boolean operand.
* @example Basic Usage
*
* ```javascript
* true::xor(true) // false
* true::xor(false) // true
* false::xor(true) // true
* false::xor(false) // false
* ```
*/
ex... |
'use strict';
var _get = function get(object, property, receiver) { if (object === null) object = Function.prototype; var desc = Object.getOwnPropertyDescriptor(object, property); if (desc === undefined) { var parent = Object.getPrototypeOf(object); if (parent === null) { return undefined; } else { return get(parent, ... |
import _extends from 'babel-runtime/helpers/extends';
import _objectWithoutProperties from 'babel-runtime/helpers/objectWithoutProperties';
import _classCallCheck from 'babel-runtime/helpers/classCallCheck';
import _possibleConstructorReturn from 'babel-runtime/helpers/possibleConstructorReturn';
import _inherits from ... |
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const utils = require("../../utils");
const partial_1 = require("../matchers/partial");
class DeepFilter {
constructor(_settings, _micromatchOptions) {
this._settings = _settings;
this._micromatchOptions = _micromatchOption... |
// Copyright 2014 the V8 project authors. All rights reserved.
// AUTO-GENERATED BY tools/generate-runtime-tests.py, DO NOT MODIFY
// Flags: --allow-natives-syntax --harmony --harmony-proxies
var _x = 1.5;
%MathFround(_x);
|
System.register(["github:aurelia/bootstrapper@0.9.3/system/index"], function($__export) {
return { setters: [function(m) { for (var p in m) $__export(p, m[p]); }], execute: function() {} };
}); |
'use strict';
const path = require('path');
const MockUI = require('console-ui/mock');
const Instrumentation = require('../../lib/models/instrumentation');
module.exports = MockCLI;
function MockCLI(options) {
options = options || {};
this.ui = options.ui || new MockUI();
this.root = path.join(__dirname, '..',... |
/*!
* Angular Material Design
* https://github.com/angular/material
* @license MIT
* v0.11.0-master-f04f094
*/
function MdSubheaderDirective(e,a,r,n){return{restrict:"E",replace:!0,transclude:!0,template:'<div class="md-subheader"> <div class="md-subheader-inner"> <span class="md-subheader-content"></span> </... |
'use strict';
var bulkDocument = require('../../helpers/unit').unit([
'document',
'bulk'
]);
bulkDocument({
docs: [
{key: 'baz', name: 'bazzel'},
{key: 'bar', name: 'barry'}
]
}, {
body: '{"docs":[{"key":"baz","name":"bazzel"},{"key":"bar","name":"barry"}]}',
headers: {
accept: 'application/js... |
/*! JointJS v2.1.4 (2018-08-01) - 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/.
*/
(function(root, factory) {
if (typeof define === 'fu... |
function valToggleMsg(serverValidationManager) {
return {
require: "^form",
restrict: "A",
/**
Our directive requries a reference to a form controller which gets passed in to this parameter
*/
link: function (scope, element, attr, formCtrl) {
... |
/*
* Copyright (c) 2009 WiQuery team
*
* 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,... |
import React from 'react'
import renderer from 'react-test-renderer'
import Modal from '../../../components/Modal/Modal'
import { Provider } from 'react-redux'
import { TStore } from '../../ducks/tutils'
describe('Modal Component', () => {
let store = TStore()
it('should render correctly', () => {
// ... |
// Used to provide better protractor documentation for webdriver. These files
// are not used to provide code for protractor and are only used for the website.
/**
* @fileoverview The heart of the WebDriver JavaScript API.
*/
goog.provide('webdriver');
/**
* Class for defining sequences of complex user interactio... |
/**
* @fileoverview Rule to disallow assignments to native objects or read-only global variables
* @author Ilya Volodin
*/
"use strict";
//------------------------------------------------------------------------------
// Rule Definition
//----------------------------------------------------------------------------... |
"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 __());
};
/*
* This is an mock implementation of the Driv... |
// ==================================================
// fancyBox v3.3.1
//
// Licensed GPLv3 for open source use
// or fancyBox Commercial License for commercial use
//
// http://fancyapps.com/fancybox/
// Copyright 2018 fancyApps
//
// ==================================================
(function(window, document, $, ... |
"use strict";
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(gene... |
"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.useEffectDev=void 0;var _react=require("react"),_utils=require("../lib/utils"),useEffectDev="development"===process.env.NODE_ENV?_react.useEffect:_utils.noop;exports.useEffectDev=useEffectDev; |
/*!
Copyright © 2006-2007 Kevin C. Olbrich
Copyright © 2010-2013 LIM SAS (http://lim.eu) - Julien Sanchez
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 lim... |
/**
@module ember
@submodule ember-runtime
*/
// ..........................................................
// HELPERS
//
import Ember from 'ember-metal/core';
import { get } from 'ember-metal/property_get';
import { set } from 'ember-metal/property_set';
import { apply } from 'ember-metal/utils';
import {
Mixin,
... |
import Connection from "./connection"
import ConnectionMonitor from "./connection_monitor"
import Consumer, { createWebSocketURL } from "./consumer"
import INTERNAL from "./internal"
import Subscription from "./subscription"
import Subscriptions from "./subscriptions"
import SubscriptionGuarantor from "./subscription_g... |
/*
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
*
* == BEGIN LICENSE ==
*
* Licensed under the terms of any of the following licenses at your
* choice:
*
* - GNU General Public License Version 2 or later (the "GPL")
* http://ww... |
;(function(root, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(root.iNotify = factory());
}(this, function(root, undefined) {
var repeatableEffects = ['flash', 'scroll'],iNotify,defau... |
/**
* Copyright (c) 2015-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*/
'use strict... |
/**
* jQuery Generic Plugin Module
* Version 0.1
* Copyright (c) 2011 Cyntax Technologies - http://cyntaxtech.com
* Licensed under the Cyntax Open Technology License
* http://code.cyntax.com/licenses/cyntax-open-technology
*/
(function( $ ) {
$.jQueryPlugin = function( name ) {
$.fn[name] = function( opti... |
/* Formatblock
* Is used to insert block level elements
* It tries to solve the case that some block elements should not contain other block level elements (h1-6, p, ...)
*
*/
(function(wysihtml5) {
var dom = wysihtml5.dom,
// When the caret is within a H1 and the H4 is invoked, the H1 should turn into H4... |
CKEDITOR.plugins.setLang("flash","en-au",{access:"Script Access",accessAlways:"Always",accessNever:"Never",accessSameDomain:"Same domain",alignAbsBottom:"Abs Bottom",alignAbsMiddle:"Abs Middle",alignBaseline:"Baseline",alignTextTop:"Text Top",bgcolor:"Background colour",chkFull:"Allow Fullscreen",chkLoop:"Loop",chkMenu... |
/* */
var $ = require("./$"),
$def = require("./$.def"),
aFunction = require("./$.a-function"),
anObject = require("./$.an-object"),
isObject = require("./$.is-object"),
bind = Function.bind || require("./$.core").Function.prototype.bind;
$def($def.S + $def.F * require("./$.fails")(function() {
f... |
/**
* The examples provided by Formidable Labs are for non-commercial testing and
* evaluation purposes only. Formidable Labs reserves all rights not expressly
* granted.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHA... |
// Uses a hash of prototype properties and class properties to be extended.
"use strict";
module.exports = function (protoProps, staticProps) {
var parent = this;
var child;
// The constructor function for the new subclass is either defined by you
// (the "constructor" property in your `extend` definition), ... |
/*!
* remark (http://getbootstrapadmin.com/remark)
* Copyright 2016 amazingsurge
* Licensed under the Themeforest Standard Licenses
*/
$.components.register("card", {
mode: "init",
defaults: {
},
init: function(context) {
if (!$.fn.card) return;
var defaults = $.components.getDefaults("card");
... |
// # Validation Error
// Custom error class with status code and type prefilled.
function ValidationError(message) {
return new ValidationError(message, null);
}
function ValidationError(message, offendingProperty) {
this.message = message;
this.stack = new Error().stack;
this.code = 422;
if (offe... |
var moment = require("../../moment");
/**************************************************
Euskara
*************************************************/
exports["lang:eu"] = {
"parse" : function(test) {
test.expect(96);
moment.lang('eu');
var tests = 'urtarrila urt._otsaila ots... |
/* global define */
(function (root) {
'use strict';
// NOTE: One change has been made from stock proclaim.js: it now
// explicitly puts the fallback message (which had previously only been
// included in AssertionError#toString) into the error's `message`
// property. Without this, a failed test w... |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'codemirror', 'ka', {
toolbar: 'კოდები',
autoFormat: 'Format Selection',
commentSelectedRange: 'Comment Selection',
uncommentSelectedRange: 'Unc... |
var Entity = require('../../app/domain/entity/entity');
var Character = require('../../app/domain/entity/character');
var entity = new Entity({
id: 1,
name: 'x',
x: 1,
y: 2
});
console.log('entity is : ' + JSON.stringify(entity));
var character = new Character({
id:1,
name: 'kk',
x: 2,
y: 3,
characterId: 2,... |
var searchData=
[
['parse',['Parse',['../classv8_1_1_j_s_o_n.html#afa5f5920a22707fef514344364a388ad',1,'v8::JSON']]],
['pass',['Pass',['../classv8_1_1_unique_persistent.html#ace8f7fa76e5d36afd3ae8ee94acff00f',1,'v8::UniquePersistent']]],
['persistent',['Persistent',['../classv8_1_1_persistent.html',1,'v8']]],
[... |
function copyOnly(mid) {
return mid in {
// There are no modules right now that are copy-only. If you
// have some, though, just add
// them here like this:
// 'app/module': 1
};
}
var profile = {
basePath: '..',
action: 'release',
mini: true,
optimize: 'closure'... |
"use strict";
const domSymbolTree = require("./helpers/internal-constants").domSymbolTree;
const defineGetter = require("../utils").defineGetter;
const INTERNAL = Symbol("NodeIterator internal");
module.exports = function (core) {
// https://dom.spec.whatwg.org/#interface-nodeiterator
function NodeIteratorIntern... |
/**
* @ngdoc object
* @name ui.router.state.$uiViewScrollProvider
*
* @description
* Provider that returns the {@link ui.router.state.$uiViewScroll} service function.
*/
function $ViewScrollProvider() {
var useAnchorScroll = false;
/**
* @ngdoc function
* @name ui.router.state.$uiViewScro... |
/**
* Copyright (c) 2015, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*
* @providesModule R... |
module.exports={A:{A:{"2":"H E G C B A WB"},B:{"2":"D u","132":"g I J"},C:{"1":"0 1 2 3 4 5 6 r s t y K","2":"UB x F L H E G C B A D u g I J Y O e P Q R S T U V W X v Z SB RB","132":"a b c d N f M h i j k l m n o p q"},D:{"1":"VB DB EB","2":"F L H E G C B A D u g I J Y O e P Q R S T U V W X v Z a b c d N","132":"0 1 2 ... |
module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-connect');
grunt.loadNpmTasks('grunt-contrib-qunit');
grunt.loadNpmTasks('grunt-contrib-y... |
/*
selectivizr2 - 1.0.6
selectivizr.com
Notes about this source
-----------------------
* The #DEBUG_START and #DEBUG_END comments are used to mark blocks of code
that will be removed prior to building a final release version (using a
pre-compression script)
References:
-----------
* CSS Syn... |
/**
* ag-grid - Advanced Data Grid / Data Table supporting Javascript / React / AngularJS / Web Components
* @version v14.0.0
* @link http://www.ag-grid.com/
* @license MIT
*/
"use strict";
var __extends = (this && this.__extends) || (function () {
var extendStatics = Object.setPrototypeOf ||
({ __prot... |
"use strict";
if (angular.version.minor >= 4) {
angular.module('material.core.animate', []);
} else {
(function() {
var forEach = angular.forEach;
var WEBKIT = window.ontransitionend === undefined && window.onwebkittransitionend !== undefined;
var TRANSITION_PROP = WEBKIT ? 'WebkitTransition' : 'transition';... |
// Last time updated at June 02, 2015, 08:32:23
// Latest file can be found here: https://cdn.webrtc-experiment.com/getScreenId.js
// Muaz Khan - www.MuazKhan.com
// MIT License - www.WebRTC-Experiment.com/licence
// Documentation - https://github.com/muaz-khan/WebRTC-Experiment/tree/master/getScree... |
'use strict';
// Load modules
const Boom = require('boom');
const Hoek = require('hoek');
const Schema = require('./schema');
// Declare internals
const internals = {};
exports = module.exports = internals.Methods = function (server) {
this.server = server;
this.methods = {};
this._normalized = {};
... |
'use strict';
var Async = require('async');
var Babel = require('babel');
var find = require('lodash.find');
var Path = require('path');
var Helpers = require('./helpers/helpers');
var COMPILERS = {};
COMPILERS['.js'] = function(source, cb) {
var result;
try {
result = Babel.transform(source, {
... |
/*! Select2 4.0.6-rc.0 | https://github.com/select2/select2/blob/master/LICENSE.md */
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/pt-BR",[],function(){return{errorLoading:function(){return"Os resultados não puderam ser carregados.... |
(function () {
'use strict';
function umbNotificationList() {
var vm = this;
}
var umbNotificationListComponent = {
templateUrl: 'views/components/content/umb-variant-notification-list.html',
bindings: {
notifications: "<"
},
controllerAs:... |
const Rollup = require('broccoli-rollup');
const writeFile = require('broccoli-file-creator');
const resolve = require('rollup-plugin-node-resolve');
const commonjs = require('rollup-plugin-commonjs');
module.exports = function polyfills() {
let polyfillEntry = writeFile(
'polyfill-entry.js',
`
require... |
var testArgs={async:null==location.search.match(/(\&|\?)async/)?0:1,baseUrl:"."},requirejsArgs=requirejsArgs||{dojoLocation:"../../../../.."},ready=0,dojoConfig={async:testArgs.async,baseUrl:testArgs.baseUrl||".",packages:[{name:"testing",location:requirejsArgs.dojoLocation},{name:"dojo",location:requirejsArgs.dojoLoca... |
function _$_reuseDependency_main() { return _$_reuseDependency_dependency(); }
function _$_reuseDependency_dependency() { 0; }
_$_reuseDependency_main;
_$_reuseDependency_dependency;
|
var searchData=
[
['ldr_5fdata_5ftable_5fentry',['LDR_DATA_TABLE_ENTRY',['../_native_structs_8h.html#a1bc7b5a2ae7d8023c3b4dae925ca94ad',1,'NativeStructs.h']]],
['ldr_5fdata_5ftable_5fentry32',['LDR_DATA_TABLE_ENTRY32',['../_native_structs_8h.html#a766313f2d94b73a36e6abd1b4f773604',1,'NativeStructs.h']]],
['ldr_5f... |
// why this plugin ?
// https://github.com/postcss/postcss-messages/issues/16
import postcss from "postcss"
import colors from "chalk"
// http://www.w3.org/TR/CSS2/syndata.html#characters
// tl;dr: escape as utf-16 all non ascii chars + new lines & quotes
function escapeForCSS(string) {
let newString = ""
for (le... |
/**
* Copyright 2012-2013 Amazon.com, Inc. or its affiliates. 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. A copy of
* the License is located at
*
* http://aws.amazon.com/apache2.0/
*
* or in the ... |
var si = typeof setImmediate === 'function', tick;
if (si) {
tick = function (fn) { setImmediate(fn); };
} else {
tick = function (fn) { setTimeout(fn, 0); };
}
module.exports = tick; |
/*************************************************************
*
* MathJax/jax/output/SVG/fonts/TeX/svg/Typewriter/Regular/CombDiacritMarks.js
*
* Copyright (c) 2011-2014 The MathJax Consortium
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in complianc... |
"use strict";function setAndForwardRef(e){var r=e.getForwardedRef,o=e.setLocalRef;return function(e){var t=r();o(e),"function"==typeof t?t(e):"object"==typeof t&&null!=t&&(t.current=e)}}exports.__esModule=!0,exports.default=void 0;var _default=setAndForwardRef;exports.default=_default,module.exports=exports.default; |
version https://git-lfs.github.com/spec/v1
oid sha256:d28c75fc9086222e926daf787e2dbb157c334ec1635bc8cb6904a8bb1942f6e4
size 2330
|
import createCtor from './_createCtor.js';
import root from './_root.js';
/** Used to compose bitmasks for function metadata. */
var BIND_FLAG = 1;
/**
* Creates a function that wraps `func` to invoke it with the optional `this`
* binding of `thisArg`.
*
* @private
* @param {Function} func The function to wrap.
... |
CKEDITOR.plugins.setLang("div","sr",{IdInputLabel:"Ид",advisoryTitleInputLabel:"Савет",cssClassInputLabel:"ЦСС класе",edit:"ДИВ уређивач",inlineStyleInputLabel:"Инлине стил",langDirLTRLabel:"С лева на десно (LTR)",langDirLabel:"Смер језика",langDirRTLLabel:"С десна на лево (RTL)",languageCodeInputLabel:"Код језика",rem... |
Exhibit.MapExtension.Canvas = {};
/**
* @param {Element} icon A canvas element
* @param {Object} settings
* @returns {Element} A canvas element
*/
Exhibit.MapExtension.Canvas.makeShadow = function(icon, settings) {
var width, height, shadowWidth, canvas, context;
width = Exhibit.jQuery(icon).width();
h... |
import { RenderingTest, moduleFor } from '../../utils/test-case';
import { strip } from '../../utils/abstract-test-case';
import { set, get, setProperties } from 'ember-metal';
import { Component } from '../../utils/helpers';
import { A as emberA } from 'ember-runtime';
moduleFor('Helpers test: {{unbound}}', class ext... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.