code
stringlengths
2
1.05M
const path = require('path'); const os = require('os'); // This is also defined in bindings.js. This code duplication is ugly, but it // significantly simplifies packaging the `kelda init` code with the // "@kelda/install" module. const infraDirectory = path.join(os.homedir(), '.kelda', 'infra'); const baseInfraLocati...
'use strict'; /** * External module's name startof "$" */ var $Message = require('./message') var $keypath = require('./keypath') var $arrayHook = require('./array-hook') var $info = require('./info') var $util = require('./util') var $normalize = $keypath.normalize var $join = $keypath.join var $type = $util.type ...
/** * @author ddchen */ var objectRinser = require("./objectRinser.js"); var originalEventRinser = require("./originalEventRinser.js"); var cleanRules = []; var confs = null; var addCleanRule = function(rule) { cleanRules.push(rule); } var isFunction = function(fn) { return !!fn && !fn.nodeName && fn.constructo...
function verifica(){ /* const database = firebase.database(); const ref = database.ref("dados"); var data = { nome: 'claudinho bochecha', nivel: '111' }; var myRef = ref.push(data); alert('teste: ' + myRef);*/ } const txtEmail = document.getElementById('email'); const txtPassword = document....
Settings.authToken = Assets.getText('apiKey.txt').trim(); Settings.timeout = 120 * 1000; var Future = Npm.require('fibers/future'); var get = Future.wrap(HTTP.get); var getBins = function() { var bins = []; var binStart = Date.now(); // Setup our bins with their boundaries // This is all in reverse chrono ...
angular.module('bucketList.controllers', ['ionic', 'bucketList.services', 'services', 'directive']) /** * */ .controller('AppController', function ($rootScope, $scope, $state, AuthService) { }) /** * Controller qui permet de faire la connexion de l'utilisateur * @since 1.0 [Cédric T...
function testFunc1() { alert("Standard type"); } function testFunc2(a, b, c) { alert("Function with arguments"); } var testFunc3 = function() { var x = 7; } (function() { alert("No name function"); })
var Goal = function() { var defaultHoursPerDay = 8; var defaultHoursPerWeek = 40; var hoursPerDay; var hoursPerWeek; var dailyChart; var weeklyChart; var dailyContainer; var weeklyContainer; var weeklyCalculator; var durationCalculator; var chartBuilder; var spans; var init = function() { ...
c: { a(); switch (1) { case 2: b(); if (a) break c; for (var b = 3; b < 4; b++) { if (b > 5) break; // this break refers to the for, not to the switch; thus it // shouldn't ruin our optimization d.e(b); } f(); ...
function subtract() { let num1 = document.getElementById('firstNumber').value; let num2 = document.getElementById('secondNumber').value; let subtract = document.getElementById('result'); subtract.textContent = Number(num1) - Number(num2); }
;(function($, undefined) { $.fn.convenience_store = function(brand_name, options) { var brands = $.fn.convenience_store.available_brands; if(brand_name === undefined || brand_name == '' || (brands.indexOf(brand_name) == -1)) return; return this.each(function() { $.fn.convenience_store.style($(this),...
const releases = require('../data/releases.json') module.exports = (req, res) => { const context = Object.assign(req.context, { releases: releases }) res.render('releases', context) }
// sections model // - we get passed the list of questions and then we generate the sections define(function (require) { "use strict"; var $ = require('jquery'), Backbone = require('backbone'), Questions = require('./questions.js') var Section = Backbone.Model.extend({ ...
'use strict'; /** * Module dependencies. */ var mongoose = require('mongoose'), Schema = mongoose.Schema; var mongoosePaginate = require('mongoose-paginate'); /** * Article Schema */ var CategorySchema = new Schema({ created: { type: Date, default: Date.now }, title: { type: String, defaul...
/* Copyright (c) 2017 Andre Santos 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, publish, distribute, su...
define([ 'underscore', 'backbone' ], function(_, Backbone){ var AboutmeModel = Backbone.Model.extend({ urlRoot: '/static/js/data/data-aboutme.json', initialize: function(){ } }); return AboutmeModel; });
function showSuccessTip(tip,url) { swal({ title: tip || '操作成功!', text: '', type: "success", timer: 800, confirmButtonText: "关闭" },function () { if(url){ location.href = url } }); } // 显示操作失败提示,不会自动关闭 function showFailTip(tip) { swal({ ...
import {Provider} from 'react-redux'; import store from './src/redux/store'; import AppViewContainer from './src/modules/AppViewContainer'; import React from 'react'; import {AppRegistry} from 'react-native'; const Mojifi = React.createClass({ render() { return ( <Provider store={store}> <AppView...
var NavbarController = function($scope){ var _this = this; this.type = function(){ if($scope.static != null && $scope.static == true){ return 'navbar-static-top'; } else{ return 'navbar-fixed-top'; } } $scope.classes = function(){ var result = []; result.push(_this.type()); ...
import renderWrapper from './renderWrapper'; export default renderWrapper();
import React, { useState } from 'react'; import ReactNodeGraph from '../index'; const exampleGraph = { "nodes":[ {"nid":1,"type":"WebGLRenderer","x":1479,"y":351,"fields":{"in":[{"name":"width"},{"name":"height"},{"name":"scene"},{"name":"camera"},{"name":"bg_color"},{"name":"postfx"},{"name":"shadowCameraNear"...
class Foo {} export default new Foo();
/** /* Script name : config.js /* Description : Configuration file /* Author : Redek Project **/ 'use strict'; // CONFIGURATIONS VARIABLES // ---------------------------------------------------------------------------- let initialConfig = { showDebug: true, userModelName: 'User', defaultRoleUser: { name: 's...
$(document).ready(function(){ $(document).unbind('rebind.showdown.gui'); $(document).bind('rebind.showdown.gui', function() { startGui(); }) $(document).trigger('rebind.showdown.gui'); })
var connect = require('connect'); var static = require('serve-static'); var compression = require('compression'); function filter(req, res) { var type = res.getHeader('Content-Type') || ''; console.log(type); return type.match(/json|text|javascript|css/); } var app = connect() .use(compression({ thres...
"use strict"; const SunUtils = require("../../../lib/time/SunUtils"); describe("SunUtils", () => { it("should be exported", () => { expect(typeof SunUtils).toEqual("object"); }); describe("sunrise angle constant", () => { it("should be exported", () => { expect(typeof SunUti...
var optionsApp = angular.module('twBlockchain', ['ngRoute','kcd.directives','datatables']) optionsApp.config(['$routeProvider', function($routeProvider) { $routeProvider. when('/receipts', { templateUrl: 'partial_receipts.html', controller: 'ReceiptsController' }). when('/protected', { ...
import MarkdownIt from 'markdown-it' const handlePlugin = (plugin) => plugin.default || plugin export default ({ app }, inject) => { <% const preset = options.preset || 'default' delete options.preset const plugins = options.use || [] delete options.use options = serialize(options) options = options === '{}' ? undefi...
var path = require('path'), rootPath = path.normalize(__dirname + '/..'), env = process.env.NODE_ENV || 'development'; var config = { development: { root: rootPath, app: { name: 'kiosk-node-service' }, port: 3000, db: 'mysql://localhost/kiosk-node-service-development' }, test: ...
Ext.define('sisprod.model.ActivityOtModel', { extend: 'Ext.data.Model', require: [ 'Ext.data.Model' ], fields:[ {name: 'idActivityOt', type: 'int', visible: false}, // Ext.data.Types.FLOAT {name: 'description', type: 'string', visible: true} ], idProperty: ...
//artificial intelligence class //handles AI decision-making by means of sensor input from entity body (which should contain sensory fixtures) ig.module('game.AI') .requires('game.entities.physEnt'). defines( function() { ig.AI = ig.Class.extend({ }); });
/* Tabulator v4.8.3 (c) Oliver Folkerd */ var MoveColumns = function MoveColumns(table) { this.table = table; //hold Tabulator object this.placeholderElement = this.createPlaceholderElement(); this.hoverElement = false; //floating column header element this.checkTimeout = false; //click check timeout holder this....
/*! * Paper.js v*#=* options.version * * This file is part of Paper.js, a JavaScript Vector Graphics Library, * based on Scriptographer.org and designed to be largely API compatible. * http://paperjs.org/ * http://scriptographer.org/ * * Copyright (c) 2011, Juerg Lehni & Jonathan Puckey * http://lehni.org/ & h...
// [导出] exports = module.exports = Engine; // [模块] var path = require('path'); // [函数] function Engine() { this.instructionHandler = undefined; this.context = undefined; this.isRunning = undefined; this.instructionList = []; this.nextIndex = 0; // 指令模块文件所在目录 this.moduleDir = undefined; } En...
var storage = { l_storage:chrome.storage.local, _getEmptyFun:function(){ return function(){}; }, set:function(obj,cb){ cb = cb || this._getEmptyFun; this.l_storage.set(obj,cb) }, get:function(key,cb){ cb = cb || this._getEmptyFun; this.l_storage.get(key,cb); }, getUsed:function(key,...
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var testHelper_1 = require("./testHelper"); describe('use-view-encapsulation', function () { describe('invalid view encapsulation', function () { it('should fail if ViewEncapsulation.None is set', function () { var sour...
import {readdirSync as directory, readFileSync as file} from 'fs' import {join} from 'path' import unified from 'unified' import reParse from 'remark-parse' import footnotes from 'remark-footnotes' import stringify from 'rehype-stringify' import remark2rehype from 'remark-rehype' const base = join(__dirname, 'fixtures...
const chunks = {} // chunkId => exports const chunksInstalling = {} // chunkId => Promise const failedChunks = {} function importChunk(chunkId, src) { // Already installed if (chunks[chunkId]) { return Promise.resolve(chunks[chunkId]) } // Failed loading if (failedChunks[chunkId]) { return Promise.r...
import Good from 'good'; module.exports = [ { register: Good, options: { reporters: [{ reporter: require('good-console'), events: { response: '*', log: '*' } }] } } ];
/* * 12 */ (function(global) { module.exports.setupClient = require("./handlers.js").setupClient global.setupClient = module.exports.setupClient module.exports.extentionAvailable = true global.extentionAvailable = true console.log("Client can run setup...") }).call(this, typeof global !== "undefined" ? glob...
;(function($) { var popup, $currentFetchButton, modalCache = {}; function _toggleButtonState($button, error) { var $buttons = $button.find('button'); $.each(['btn-default', 'btn-success', 'btn-danger'], function(idx, className) { if ($buttons.hasClass(className)) { $buttons.removeClass(className)...
var util = require('util'); var events = require('events'); var QuicStream = require('./QuicStream'); var QuicDataStream = module.exports = function QuicDataStream (session, id) { var self = this; QuicDataStream.super_.call(this, session, id); }; util.inherits(QuicDataStream, QuicStream);
'use strict'; require('core-js'); var _nodePlop = require('./node-plop'); var _nodePlop2 = _interopRequireDefault(_nodePlop); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } /** * Main node-plop module * * @param {string} plopfilePath - The absolute path to the pl...
'use strict'; app.factory('Auth', ['$firebaseAuth', function($firebaseAuth) { return $firebaseAuth(); }]);
/** * Navigation view module controller. * * @author imoiseyenko93@gmail.com */ define(["angular"], function (angular) { return ["$scope", "$state", "authService", "lsService", "authService", function ($scope, $state, authService, lsService, authService) { var successHandler = function (data) {...
angular.module('app', [ 'ngRoute', 'ui.select' ]) // Routes .config(function($routeProvider) { $routeProvider .when('/', { templateUrl: 'home.html', controller: 'HomeController' }) .when('/:steamId/trade-offers', { templateUrl: 'trade-offers.html', controller:...
search_result['592']=["topic_000000000000013A.html","CompanyController.GetMasterBadgesItemPerson Method",""];
if(!X2JS)throw Error("You're required to include the X2JS library to use the xml module."); (function(c,e){function d(b){return(b=b.headers("content-type"))?-1<b.search(/\Wxml/i):!1}function f(b,c){return{response:function(a){return a&&d(a)?(a.data=c.xml_str2json(a.data),a):b.when(a)},responseError:function(a){a&&d(a)&...
//date.js - custom extended functions for date object //TODO: change from extending to wrapper class Date.prototype.setDateWithSimpleFormat = function (dateString) { //dateString to be in dd/mm/yyyy let ary = dateString.split('/'); return new Date(ary[2], ary[1] - 1, ary[0], 0, 0, 0, 0); }; Date.prototype.setDateW...
Let me be :-)
var crypto = require('crypto'); var config = require('../../config'); var router = require('express').Router(); var activity = require('../../modules/activity')(); var async = require('async'); var _ = require('lodash-node'); var errorProxy = require(process.cwd() + '/error'); /** * add activity * */ router ....
// Because PhantomJS can load and manipulate a web page, // it is perfect to carry out various page automations. // The following useragent.js example demonstrates // reading the textContent property of the element whose id is myagent: var page = require('webpage').create(); console.log('The default user agent is ' +...
import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( <path d="M4 6.47L5.76 10H20v8H4V6.47M22 4h-4l2 4h-3l-2-4h-2l2 4h-3l-2-4H8l2 4H7L5 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4z" /> , 'MovieOutlined');
'use strict'; var React = require('react'), Main = require('./components/Main'), DocumentTitle = require('react-document-title'), { RouteHandler } = require('react-router'), { PropTypes } = React; var bootstrap = React.createClass({ propTypes: { params: PropTypes.object.isRequired, query: Pr...
/*global define*/ define([], function () { "use strict"; bar(); });
'use strict'; import koa from 'koa'; import logger from './utils/logger'; import APP_CONF from './configs/app'; import router from './routers'; let app = koa(); app.experimental = true; app.use(router.account.routes()).use(router.account.allowedMethods()); app.on('error', function () { console.log('!!'); }); a...
'use strict'; /* all required gulp libs */ var gulp = require('gulp'); var gutil = require('gulp-util'); var clean = require('gulp-clean'); var flatmap = require('gulp-flatmap'); var fs = require('fs'); var path = require('path'); var argv = require('yargs').argv; var closureCompiler = require('google-closure-compiler...
(function () { var cookies = {}; function readCookie(name) { if (cookies[name]) { return cookies[name]; } var cookie; var c = document.cookie.split('; '); cookies = {}; for (var i = c.length - 1; i >= 0; i--) { cookie = c[i].split('='); cookies...
/* return element: Most of methods return svg canvas object for easy chaining Initalization: var container = d3ma.container('#vis').margin({top: 80, left: 80}).box(1400, 600); var canvas = container.canvas().chart("FinalChart", container.info() ); canvas.draw(data); Note: container.info() as 2nd parameter i...
_frame.app_main.page['about'] = {} _frame.app_main.page['about'].journal_parse = function (raw) { var searchRes , scrapePtrn = /\[\[([^\:]+)\:([0-9]+)\]\]/gi , resultHTML = markdown.toHTML(raw) while ((searchRes = scrapePtrn.exec(raw)) !== null) { try { resultHTML = resultH...
import Vue from 'vue'; import './mdCore'; import mdTable from 'vue-material/dist/components/mdTable'; import 'vue-material/dist/components/mdTable/index.css'; if (!mdTable.installed) { Vue.use(mdTable); } export default mdTable
import {Task} from '../components/tasks/tasks.service.js'; export class MainController { constructor ($interval, $log, tasksService, speechService) { 'ngInject'; const vm = this, currentTime = getPomodoroTime(); Object.assign(vm, { // timer timeLeft: formatTime(currentTime), ...
'use strict'; var env = require('./env.js'), express = require('express'), morgan = require('morgan'), compression = require('compression'), bodyParser = require('body-parser'), methodOverride = require('method-override'), session = require('express-session'), passport = require('passport')...
import Model from 'ember-data/model'; import attr from 'ember-data/attr'; export default Model.extend({ name: attr('string'), package: attr('raw'), active: attr('boolean'), warnings: attr('raw'), activate() { let adapter = this.store.adapterFor(this.constructor.modelName); return ...
/* * @license MIT * @file * @copyright KeyW Corporation 2016 */ (function () { "use strict"; var _theme; angular .module('mdColors',['mdColors']) .config(['$mdThemingProvider', function($mdThemingProvider){ _theme = $mdThemingProvider.theme(); }]) .directive('mdStyleColor', ['$mdCo...
// For this challenge, take the integer from process.argv[2] and write it as the first // element in a single element Uint32Array. Then create a Uint16Array from the Array // Buffer of the Uint32Array and log out to the console the JSON stringified version // of the Uint16Array. var ui32 = new Uint32Array(1) ui32[0] =...
/* See README.md */ var Service, Characteristic, types; var request = require('request'); // Handle registration with homebridge module.exports = function(homebridge) { Service = homebridge.hap.Service; Characteristic = homebridge.hap.Characteristic; types = homebridge.hapLegacyTypes; homebridge.registerPl...
// FacetCollection class var FacetCollection = function(collection) { // give FacetCollection instances ability to handle Backbone Events _.extend(this, Backbone.Events); // init local variables var _self = this, _facets = {}, // facets list _cidModelMap = {}, // an hash containing...
/* */ "format cjs"; (function(process) { !function(a) { "use strict"; var b = null, c = null; !function(c) { function a(d) { if (b[d]) return b[d].exports; var e = b[d] = { exports: {}, id: d, loaded: !1 }; return c[d]....
$(document).ready(function(){ $(".toooltip_like").unbind("mouseover").bind("mouseover",function(){ var id = $(this).attr("id"); var i,post_id=""; for(i=9;i<id.length;i++) post_id+=id[i]; $.ajax({ url:"see_who_liked.php", method:"post", data:{post_id:post_id}, beforesend:function() { $("#t...
(function (document, window) { "use strict"; var TextLimit = { // Settings defaultLimit: 150, defaultType: "character", // "character" or "word" defaultStyle: "normal", // "normal" or "micro" // Selectors limiterSelector: "data-limiter", microSelector: "data-limiter-micro", wordSe...
'use strict'; /** * Module dependencies. */ var mongoose = require('mongoose'), Schema = mongoose.Schema; /** * Variant Schema */ var VariantSchema = new Schema({ Patient: {type: String}, Chr: {type: String}, Start: {type: Number}, End: {type: Number}, Ref: {type: String}, Alt: {ty...
/* * This file has been generated to support Visual Studio IntelliSense. * You should not use this file at runtime inside the browser--it is only * intended to be used only for design-time IntelliSense. Please use the * standard jQuery library for all runtime use. * * Comment version: 1.11.1 */ /*! * jQuer...
var LagerApp = React.createClass({ _loadServersData: function() { var username = localStorage.getItem('username'); var authToken = localStorage.getItem('auth_token'); $.ajax({ headers: { 'Authorization': 'Basic ' + btoa(username + ':' + authToken) }, url: "/servers", data...
(function(){ Template.__checkName("users_list_email"); Template["users_list_email"] = new Template("Template.users_list_email", (function() { var view = this; return HTML.A({ href: function() { return [ "mailto:", Spacebars.mustache(Spacebars.dot(view.lookup("profile"), "email")) ]; } }, Blaze.View(...
import React, { Component } from "react" import { connect } from "react-redux" import { Button, Form, Modal } from "semantic-ui-react" import { createMapping, resetNewMapping } from "../../../../actions/instruments" import { noteMap } from "../../../../utils/mapping" import "./MappingCreateForm.css" class MappingCrea...
'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } var _CordoWrap = require('./CordoWrap'); var _CordoWrap2 = _interopRequireDefault(_CordoWrap); exports['default'] = new _CordoWrap2['defau...
'use strict'; angular.module( 'StartupRI' ).controller( 'StartupsCtrl', ['$scope', "$http", function( $scope, $http, $auth) { $scope.awesomeThings = [ 'HTML5 Boilerplate', 'AngularJS', 'Karma' ]; $http.get('/api/v1/startups.json').success(function(data) { $scope.startups = data; }); $scope....
function BranchData() { this.position = -1; this.nodeLength = -1; this.src = null; this.evalFalse = 0; this.evalTrue = 0; this.init = function(position, nodeLength, src) { this.position = position; this.nodeLength = nodeLength; this.src = src; return this; } ...
var nps = require('path'); var Picidae = require('../lib'); var getPath = require('./lib/getPath'); module.exports = function (commander) { if (!process.env.NODE_ENV) { process.env.NODE_ENV = 'production' } var p = getPath(commander.config) var configPath = p.configPath, cwd = p.cwd var c...
'use strict'; var Can = require('./can'); var internals = {}; internals.applyUserProperties = function (target) { [target, target.prototype].forEach(internals.registerCan, this); }; internals.registerCan = function (target) { Object.defineProperty(target, 'can', { enumerable: true, get: function () { ...
/* */ 'use strict'; Object.defineProperty(exports, "__esModule", {value: true}); var _react = require('react'); var _react2 = _interopRequireDefault(_react); var _reactAddonsPureRenderMixin = require('react-addons-pure-render-mixin'); var _reactAddonsPureRenderMixin2 = _interopRequireDefault(_reactAddonsPureRenderMixi...
$(document).ready(function() { $("#departing").datepicker(); $("#returning").datepicker(); $("button").click(function() { var selected = $("#dropdown option:selected").text(); var departing = $("#departing").val(); var returning = $("#returning").val(); }); }); var config ...
var assert = require('chai').assert; var combine = require(`${__dirname}/../../../../src/steps/combine`); describe('#remove', function () { it('should remove one key', function () { var schema = { for: 'result', each: [ ['add', {byKey: 'id', fromObject: 'users', to:...
//= wrapped /** * Created by shardik on 21/01/18. */ angular.module('streama.translations').config(function ($translateProvider) { $translateProvider.translations('ru', { LOGIN: { TITLE: 'Пожалуйста, авторизуйтесь', USERNAME: 'Логин', PASSWORD: 'Пароль', FIRST_TIME_HINT: 'Впервые? Используйте \'admin\'...
/** * angular-strap * @version v2.3.2 - 2015-12-15 * @link http://mgcrea.github.io/angular-strap * @author Olivier Louvignes <olivier@mg-crea.com> (https://github.com/mgcrea) * @license MIT License, http://www.opensource.org/licenses/MIT */ 'use strict'; angular.module('mgcrea.ngStrap.aside').run([ '$templateCac...
'use strict'; var ScriptBase = require('../script-base.js'); var Generator = module.exports = ScriptBase; Generator.prototype.typename = function() { return 'utility'; }; Generator.prototype.typepath = function() { return 'object/utility'; };
'use strict'; // Controller naming conventions should start with an uppercase letter function HomeViewCtrl($scope) { $scope.testVar = 'We are up and running!'; $scope.clientFeatures=[]; $scope.clientFeatures.push('AngularJs'); $scope.clientFeatures.push('Bootstrap'); $scope.clientFeatures.push('Angul...
var expect = require('chai').expect, objectAssign = require('object-assign'), _ = require('lodash'), generate = require('../../../lib/data-generator.js'), EventEmitter = require('events').EventEmitter; var input = require('./data/input.js'), output = require('./data/output.js'); /** * Generates a ...
// @flow export { default as resolver } from './resolver'; export { default as defaultContext } from './resolverContext';
var pets = ['cat', 'dog', 'rat']; for(var i = 0; i < pets.length; i++) { pets[i] = pets[i] + 's'; } console.log(pets);
var redis = require('redis'); var q = require('q'); var db = redis.createClient(); var dbPrefix = global.dbPrefix; // Set what Redis db prefix to use, based on environment (dev or production) var userPrefix = dbPrefix + ':user:'; var timerPrefix = dbPrefix + ':timer:'; var idPrefix = dbPrefix + ':id_counter'; var us...
module.exports = function (phoneBook, htmlRenderer, queryStringParser) { return function (req, res) { var query = queryStringParser.parse(req.url); var sendPhoneBook = function () { phoneBook.getAll(function (err, items) { res.writeHead(200, {'Content-Type': 'text/html'}); res.end(htmlRenderer.render...
'use strict'; var port = process.env.PORT || 8000; var http = require('http'); var express = require('express'); var bodyParser = require('body-parser'); var swaggerize = require('swaggerize-express'); var swaggerUi = require('swaggerize-ui'); // change one var path = require('path'); var app = express(); ...
require('./panelGroup.component'); require('./panel.component'); require('./pagination.component'); require('./panelHeading.component'); require('./objectPanelBody.component'); require('./arrayPanelBody.component'); require('./mapPanelBody.component');
version https://git-lfs.github.com/spec/v1 oid sha256:fabf4c1efa49300a95ad0362e90bb6f4161e3c7b283e1c2dfc51b179a36463b2 size 562
var normalize = require("../lib/normalize"); var yaml = require("../lib/yaml"); var Plugins = require("../lib/plugins"); var async = require("async"); var fs = require("fs"); var path = require("path"); var chai = require("chai"); chai.should(); chai.config.showDiff = true; var plugins = new Plugins(); describe("Norm...
var express = require('express'); var fs = require('fs'); var io = require('socket.io'); var crypto = require('crypto'); var app = express.createServer(); var staticDir = express.static; io = io.listen(app); var opts = { port: 1948, baseDir : __dirname + '/.....
/* * Guerilla * Copyright 2015, Yahoo Inc. * Copyrights licensed under the MIT License. * * Provides data and functionality to be used by tasks. */ var path = require('path'); var callsite = require('callsite'); var Task = require('./task'); var utilities = require('./utilities'); function Context (executor, jo...
"use strict"; // debug.ts var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); /* * Middleware for debugging HTTP requests and responses */ /* The MIT License Copyrig...