code
stringlengths
2
1.05M
class Generator { s4 = (): Object => { return Math.floor((1 + Math.random()) * 0x10000) .toString(16) .substring(1); } guid = (): Object => { let s = this.s4; return `${s()}${s()}-${s()}-${s()}-${s()}-${s()}${s()}${s()}`; } } export default new Generator(...
/* * VideoLoader * Visit http://createjs.com/ for documentation, updates and examples. * * * Copyright (c) 2012 gskinner.com, inc. * * 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 w...
module.exports = function () { return "module.exports = null" }
require('./index.js').start();
import React from 'react'; export default class DropContainer extends React.Component { onDragOver(itemId, event) { event.preventDefault(); } render() { let style = { width: "50%", // border: "1px solid #aaaaaa", } return ( <div draggable...
const path = require("path"); const DEBUG = process.env.NODE_ENV !== "production"; module.exports = { mode: DEBUG ? "development" : "production", devtool: DEBUG ? "inline-source-map" : "source-map", entry: "./src/key-input-registerer.js", output: { path: path.resolve(__dirname, "dist"), filename: DEBUG...
var mocha = require('mocha'), assert = require('assert'), sinon = require('sinon'), child = require('child_process'), tadaa = require('../lib/tadaa.js'); describe('Tadaa', function() { describe('when result is greater than current', function() { beforeEach(function() { sinon.stub(child, 'exec').yields(); }...
/*jslint node: true */ 'use strict'; let _ = require('./global'); module.exports = { name: '<%= appName %>' };
'use strict'; describe('Controller: PreprocessingfilterCtrl', function () { // load the controller's module beforeEach(module('tagrefineryGuiApp')); var PreprocessingfilterCtrl, scope; // Initialize the controller and a mock scope beforeEach(inject(function ($controller, $rootScope) { scope = $roo...
"use strict"; var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) { var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d; if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Refl...
'use strict'; describe('LocationsCtrl.locations', function () { beforeEach(module('artApp.locations')); describe('get /sample result', function () { it('should be added to scope', inject(function ($rootScope, $controller, $httpBackend) { var scope = $rootScope; $httpBackend .when('GET', '/sample') ...
var fs = require('fs'); var http = require('http'), util = require('util'), events = require('events'), parseXml = require('xml2js').parseString; function SoapServiceException(type, message) { this.name = 'SoapServerException'; this.type = type; this.message = message; } SoapServiceException.OPERATION_NOT...
"use strict"; exports.__esModule = true; exports.default = void 0; var _index = require("marko/src/runtime/html/index.js"); var _new2 = _interopRequireDefault(require("./new.marko")); var _renderTag = _interopRequireDefault(require("marko/src/runtime/helpers/render-tag.js")); var _renderer = _interopRequireDefault...
(function() { angular.module("com.starwars.app.login") .service("loginService", LoginService); LoginService.$inject = ['Http', 'URL']; function LoginService(Http, URL) { this.login = doLogin; function doLogin (username) { return Http.get (URL.LOGIN + username); } } })();
var path = require('path'); var nock = require('nock'); var fs = require('graceful-fs'); var expect = require('expect.js'); var Logger = require('bower-logger'); var GitRemoteResolver = require('../../../lib/core/resolvers/GitRemoteResolver'); var GitHubResolver = require('../../../lib/core/resolvers/GitHubResolver'); ...
(function (){ var paths = [ 'parse.js', 'insertcode.js', 'table.js', 'charts.js', 'background.js', 'list.js', 'video.js' ]; function getUEBasePath ( docUrl, confUrl ) { return getBasePath( docUrl ...
'use strict'; /** * Module dependencies. */ var mongoose = require('mongoose'), Schema = mongoose.Schema; /** * Trainingsession Schema */ var TrainingsessionSchema = new Schema({ venue: { type: String, default: '', required: 'Please fill Trainingsession venue', trim: true }, date: { type: Date, de...
version https://git-lfs.github.com/spec/v1 oid sha256:87a2f75616e3cfd8dac836011fdd8f0ed5e2679a9bd66188b13989fe8a45c777 size 3562
'use strict'; function ActivationController($state, UserService) { // ViewModel const vm = this; vm.activationError = false; vm.activationErrorText = ''; vm.activateUser = function () { var credentials = { primaryEmail: vm.emailID + "@student.bth.se", activationCo...
var fs = require("fs"); var origPoints = JSON.parse( fs.readFileSync("./Star_points.json") ), normalizedPoints = [], max = null; var i, p, normalizedP, axis; max = origPoints[0]; for (i = 1; i < origPoints.length; i++) { p = origPoints[i]; if ( p.point[0] > max.point[0] || p.point[1] > max.point...
$(document).ready(function() { var amountBTC = $("#amountBTC"); amountBTC.keyup(function(e) { $(".resultUSD").text(amountBTC.val()*USDrate+" USD"); $(".resultEUR").text(amountBTC.val()*EURrate+" EUR"); $(".resultGBP").text(amountBTC.val()*GBPrate+" GBP"); }); });
/** * * SmokeMonster.js * * What is SmokeMonster? * SmokeMonster is John Locke, or is he? * But seriously, SmokeMonster.js is a small graphics library based on DOM. * This library depends on Modernizr, still using Modernizr is optional. * * Why SmokeMonster? * Well, there had to be some kind of neme...
var express = require('express'); var router = express.Router(); /* GET home page. */ router.get('/', function(req, res) { res.render('index', { env: process.env.ENV || 'dev', title: 'Demo NodeJS App' }); }); module.exports = router;
import axios from 'axios' export default () => { return axios.create({ baseURL: `http://localhost:8081/` } }
(function($) { var htmlEncode = function(input) { return ($('<div/>').text(input).html()); }; $.saveFormat = function (txt) { $.each(arguments, function (i, item) { if (i > 0) { item = htmlEncode(item); txt = txt.replace("{" + (i - 1) ...
Vue.component('model-card', { template: '#templates-collection-item-tpl-html', props: ['model'], data: function() { return { menuOpen: false } }, methods: { openMenu: function () { this.menuOpen = true; }, closeMenu: function () { this.menuOpen = false; }, printModel: function(){ thi...
import React from "react"; import Box from "@mui/material/Box"; import Typography from "@mui/material/Typography"; import { colors } from "../mui-theme"; export default () => <Box className="header" sx={{ display: 'flex', flexDirection: 'column', justifyContent: 'center', backgroundColor: colors.prima...
/* * Landing Page Messages * * This contains all the text for the HomePage component. */ import { defineMessages } from 'react-intl'; export default defineMessages({ startProjectHeader: { id: 'boilerplate.containers.MapPage.start_project.header', defaultMessage: 'PadStats', }, startProjectSlogan: { ...
////////////////////////////////////////////////////////////////// // // Keyword Chart // // set the dimensions of the canvas var margin = {top: 20, right: 100, bottom: 70, left: 60}, width = 400 - margin.left - margin.right, height = 300 - margin.top - margin.bottom; // set the ranges var x = d3.scale.ordina...
/** * Based on Lo-Dash 2.4.1 (Custom Build) <http://lodash.com/> * Build: `lodash modularize modern exports="node" -o ./modern/` * Copyright 2012-2013 The Dojo Foundation <http://dojofoundation.org/> */ 'use strict'; var isFunction = require('lodash/lang/isFunction'), slice = require('lodash/array/slice'); /** ...
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var start = new Date().getTime().toString(); var count = 0; var RefGen = (function () { function RefGen() { } RefGen.next = function (prefix) { if (prefix === void 0) { prefix = 'C'; } return prefix + start + '-' + ...
/** @constructor */ ScalaJS.c.scala_collection_TraversableLike$$anonfun$exists$1 = (function() { ScalaJS.c.scala_runtime_AbstractFunction0$mcV$sp.call(this); this.$$outer$3 = null; this.result$3$f = null; this.p$5$f = null }); ScalaJS.c.scala_collection_TraversableLike$$anonfun$exists$1.prototype = new ScalaJS....
'use strict'; angular.module('firstClass').controller('CampoutDialogController', ['$mdDialog', function ($mdDialog) { this.returnCampout = function () { return $mdDialog.hide(this.campout); }; this.cancel = function () { return $mdDialog.cancel(); }; }]);
const toArray = require('../../../toArray') const getRelativePath = require('./getRelativePath') const getFilesAndDirectoriesFromDirectory = require('./getFilesAndDirectoriesFromDirectory') module.exports = function webkitGetAsEntryApi (dataTransfer, logDropError) { const files = [] const rootPromises = [] /**...
// Generated by CoffeeScript 1.6.3 (function() { var buildLocationData, extend, flatten, last, repeat, _ref; exports.starts = function(string, literal, start) { return literal === string.substr(start, literal.length); }; exports.ends = function(string, literal, back) { var len; len = literal.lengt...
/** * Created by Donatello Ferraz on 09/03/2017. */ (function () { 'use strict'; angular.module('app.interceptors') .factory('httpInterceptor', ['$q', '$injector', 'SERVER_URL', function ($q, $injector, SERVER_URL) { function correctUrl(url) { var finalUrl = url; ...
import ParallelCoordsDirective from './parallelcoords.directive'; let parallelcoordsModule = registerAngularModule('parallelcoords', []). directive('parallelcoords', ParallelCoordsDirective); export default parallelcoordsModule;
export function createFileSystem(fs) { var requireFsError = ''; if (!fs) { try { fs = require('fs'); } catch (err) { requireFsError = err.toString(); } } var readFile = fs ? function (filePath) { return new Promise(function (res...
var five = require('johnny-five'); var BeagleBone = require('beaglebone-io'); var board = new five.Board({ io: new BeagleBone() }); board.on('ready', function () { //do awesome });
'use strict'; var parse = require('url-parse'); var debug = function() {}; if (process.env.NODE_ENV !== 'production') { debug = require('debug')('sockjs-client:utils:url'); } module.exports = { getOrigin: function(url) { if (!url) { return null; } var p = parse(url); if (p.protocol === 'fi...
'use strict'; function Query(elapsed, waiting, query) { this.elapsed = elapsed; this.waiting = waiting; this.query = query; } Query.rand = function() { var elapsed = Math.random() * 15; var waiting = Math.random() < 0.5; var query = 'SELECT blah FROM something'; if (Math.random() < 0.2) { query = '...
git://github.com/concord-consortium/populations.js.git
'use strict'; // Items controller angular.module('items').directive('fileModel', ['$parse', function ($parse) { return { restrict: 'A', link: function(scope, element, attrs) { var model = $parse(attrs.fileModel); var modelSetter = model.assign; element.bind('ch...
export const KubernetesClustersDetailComponent = { bindings: { transition: '<' }, template: require('./kubernetes-clusters-detail.html'), controller: KubernetesClustersDetailController }; function KubernetesClustersDetailController(KubernetesClusters, projectServiceSelectorPopupService, logger) { 'ngInje...
/** * When loading / refreshing the page where should we start? If true then the first page displayed will the last / more recent. * * If the client has a deep catalog of content and are mainly focued on meme'ing the most recent, this save a couple of clicks. */ var setupLastFirst = false; /** * If you want to ...
'use strict'; var entryFactory = require('../../../factory/EntryFactory'), cmdHelper = require('../../../helper/CmdHelper'); var ModelUtil = require('bpmn-js/lib/util/ModelUtil'), is = ModelUtil.is, getBusinessObject = ModelUtil.getBusinessObject; module.exports = function(group, element, bpmnFactory) {...
/* ======================================================================== * SkywalkApps Breakpoint Switcher: breakpoint-switcher.js v1.0.0 * * Checks screen width and executes passed functions * * Copyright 2017 Martin Stanek, Twitter: @koucik, Github: @skywalkapps * Licensed under MIT (https://github.com/skywa...
/*! * Angular Material Design * https://github.com/angular/material * @license MIT * v1.1.1-master-f6dedff */ (function( window, angular, undefined ){ "use strict"; /** * @ngdoc module * @name material.components.sticky * @description * Sticky effects for md * */ MdSticky['$inject'] = ["$mdConstant", "$$rAF...
import { PlayerConstants } from '../constants/action'; export default function(state = [], action) { switch (action.type) { case PlayerConstants.SEARCH_PLAYER: return action.payload; case PlayerConstants.SEARCH_PLAYER_SUCCESS: return action.payload; case PlayerConstants.SEARCH_PLAYER_FAILED: return [];...
(function () { 'use strict'; angular .module('app') .filter('trustUrl', function ($sce) { return function(url) { return $sce.trustAsResourceUrl(url); }; }); })();
angular.module("rails.ujs") .directive("method", ['csrf', function (csrf) { function template(attr) { return '<form action="' + attr.href + '" method="post">' + ' <input type="hidden" name="' + csrf.param + '" value="' + csrf.token + '"/>' + ' <input type="hidden" name="_method" ...
import { NEW_AUTH } from '../actions/keymaps_actions'; const authState = { userCredentials: false }; function auth(state = authState, action) { switch (action.type) { case NEW_AUTH: return { ...state, userCredentials: action.userCredentials }; default: return state; } } export default aut...
// Regular expression that matches all symbols in the `Phags_Pa` script as per Unicode v7.0.0: /[\uA840-\uA877]/;
'use strict'; /* global require, describe, it, afterEach, beforeEach */ const Assert = require('assertly'); const expect = Assert.expect; const File = require('phylo'); // const Location = require('../../../lib/model/Location'); // const Node = require('../../../lib/model/Node'); const Document = require('../../../...
type NunjucksConfig = { autoescape: boolean, throwOnUndefined: boolean, tags: { blockStart: string, blockEnd: string, variableStart: string, variableEnd: string, commentStart: string, commentEnd: string } }; declare class Nunjucks<T> { extensions: {[string]: T}, addExtension: (name:...
Promise.reject(new Error("node error"));
import HarcWidgetLightsController from './harc-widget-ligths-controller'; export default { template: require('./harc-widget-lights.html'), controller: HarcWidgetLightsController, bindings: { data: '<', }, require: { dashboardCtrl: '^^harcDashboard', }, };
/*jslint browser: true */ /*global google $ */ if (window.google && google.gears) { var locator = { geo: google.gears.factory.create('beta.geolocation'), positionOptions: { enableHighAccuracy: true }, minAccuracy: 800, // margin-of-error in meters searchingMessage: function() { ...
"use strict" var assert = require('assert'); var request = require('supertest'); var serverConfig = require('../../config/server'); var url = "http://" + serverConfig.host + ":" + serverConfig.port; var server = request(url); describe('Root page', function() { describe('Request the main page', function() { ...
// Generated by CoffeeScript 1.6.2 (function() { var CoffeeScript, bold, build, exec, fs, green, header, helpers, log, path, red, reset, run, runTests, spawn, _ref; fs = require('fs'); path = require('path'); CoffeeScript = require('./lib/coffee-script'); _ref = require('child_process'), spawn = _ref.spaw...
Asyncplify.prototype.count = function (cond) { return new Asyncplify(Count, cond, this); }; function Count(cond, sink, source) { this.cond = cond || condTrue; this.sink = sink; this.sink.source = this; this.source = null; this.value = 0; source._subscribe(this); } Count.prototype = { ...
/** * Waits until `n` milliseconds after the last burst of values before emitting * the most recent value from the signal `s`. * * @private */ export default function debounce (n, s) { return emit => { let buffer let id const flush = () => { if (buffer) { emit.next(buffer) } buffer = nul...
// load the things we need var mongoose = require('mongoose'); var bcrypt = require('bcrypt-nodejs'); // define the schema for our user model /* var mapinfoSchema = mongoose.Schema({ marker:String, centerLatitude:Number, centerLongitude:Number, zoomLevel:Number, })*/ var userSchema = mongoose.Schema({ ...
$(function() { $('.activate-article').bootstrapSwitch(); $('.activate-article').on('switchChange.bootstrapSwitch', function(event, state) { $.ajax({ type: 'PUT', url: '/posts/change_state', data: { url_link: $(this).data('url-link'), state: state } }).done(function() { flash = "<div ...
/** * Account model events */ 'use strict'; var EventEmitter = require('events').EventEmitter; var Account = require('../../sqldb').Account; var AccountEvents = new EventEmitter(); // Set max event listeners (0 == unlimited) AccountEvents.setMaxListeners(0); // Model events var events = { 'afterCreate': 'save',...
exports.getFaceInfo = function getFaceInfo(imgFile,callBackFace) { var https = require('https'); var querystring=require('querystring'); //request param var contents = querystring.stringify({ returnFaceId: 'false', returnFaceLandmarks: 'false', returnFaceAttributes: 'age,gender,smile,f...
// Karma configuration // http://karma-runner.github.io/0.12/config/configuration-file.html // Generated on 2015-08-16 using // generator-karma 1.0.0 module.exports = function(config) { 'use strict'; config.set({ // enable / disable watching file and executing tests whenever any file changes autoWatch: tr...
var _ = require('underscore'); var pair = function(fst, snd) { return {fst: fst, snd: snd}; } var newc = function(arr) { return { str: arr, out: [], side: [], fail: false, val: undefined, } } var arrc = function(arr) { return arr.concat([]); } var copy = function(c) { return { str: a...
var http = require('http'); var express = require('express'); var app = express(); var exphbs = require('express3-handlebars'); var i18n = require('../../index'); process.env.PORT = process.env.PORT || 2637; // Initialize locale. i18n.init({ supportedLangs: ['en-GB'], setLang: 'en-GB' }); app.use(i18n.helpers); ...
var async = require('async'); exports.findByTaskId = function (req, res, next) { var task_id = req.params.task_id; req.models.Task.findById( task_id, function (error, task) { if (error) return next(error); if (!task) return res.status(404).end(); req.task = task; next(); }...
var data = {'portfolio-main': {}};
//Orc Middleware Base Test 'use strict'; const should = require('should'); const middlewareTask=require('../../lib/middleware/base').task; //Middleware Task module.exports=function(orcClient){ describe('Base function', ()=>{ describe('Middleware Task Promise Object', ()=>{ it('Create without mi...
var React = require('react'); var Router = require('react-router'); var AuthError = React.createClass ({ render: function(){ return ( <div className="alert alert-danger mt10"> <p>Oops! You entered the wrong credentials. Try again.</p> </div> ) } }) module.exports = AuthError;
const base = require('../base'); describe('honeycomb/base', () => { test('extends eslint-config-airbnb-base', () => { expect(base.extends[0]).toMatch(/eslint-config-airbnb-base\/index\.js/); }); test('has expected jest environment', () => { expect(base.env).toEqual({ jest: true, browser: tru...
angular.module('application') .controller('DefaultController', ['$scope', '$stateParams', '$state', 'Utils', function($scope, $stateParams, $state, u) { var params = []; angular.forEach($stateParams, function(value, key) { params[key] = value; }); $scope.params = params; $scope.current = $s...
var gulp = require('gulp'); var traceur = require('gulp-traceur'); gulp.task('traceur', function () { gulp.src(['./app.js', './config.js']) .pipe(traceur({ blockBinding: true })) .pipe(gulp.dest('./compiled/traceur')); }); gulp.task('default', ['traceur']);
var gulp = require('gulp'); var path = require('path'); var fs = require('fs'); // var bs = require('browser-sync').get('MyBS'); // Load plugins var $ = require('gulp-load-plugins')({ pattern: ['gulp-*', 'del'] }); /** * Compile Posts */ gulp.task('posts', function() { return gulp.src(path.join(global.paths.sr...
import {qs, $on, debounce} from './helpers'; let instance = null; function scrollIntoView(eleID) { var e = qs(eleID).getBoundingClientRect(); var h = qs('#header').getBoundingClientRect(); window.scrollTo(0, e.top - h.height - 100); } export default class View { constructor(template) { if(!instance) { ...
$(document).ready(function() { var introtext = document.getElementById('intro-pic'); console.log("main.js infotext"); //window.alert("KEIJOO"); //TweenMax.to(introtext, 1.35, {opacity: '100'}); }); //Script for handling the anchor scrolling // $('a[href*=#]:not([href=#])').click(function() { if (location...
export function coreRoutingConfig($routeProvider, $locationProvider) { 'ngInject'; $routeProvider.otherwise({ redirectTo: '/404' }); $locationProvider.html5Mode(true); }
module.exports = function ({ $incremental, $lookup }) { return { object: function () { return function (object) { return function ($buffer, $start, $end) { let $$ = [] ; (($_ = 0) => require('assert').equal($_, 1))(object.value) ...
'use strict'; var profile = require('../controllers/profile'); module.exports = function(Profile, app, auth) { console.log('inside routes '); app.route('/profile') .get(profile.show) .post(profile.postImage); app.route('/profileinfo') .get(profile.getinformation) .post(profile.setinformat...
var config = require('./config'), scenariosResponse = require('./models/scenariosResponseStub') express = require('express'), app = express(); app.get('/', function (request, response) { response.send('Hello'); }); app.get('/scenarios/:title', function (request, response) { response.send(scenariosR...
/*jshint expr: true*/ 'use strict'; require('should'); describe('Baby', function(){ var baby = require('../scripts/baby.js'); describe('when awake', function(){ it('should return itself', function(){ baby.awake('cry').should.have.property('each_cry'); }); }); describe('when crying', function()...
/* global module:false */ module.exports = function(grunt) { var port = grunt.option('port') || 8000; // Project configuration grunt.initConfig({ pkg: grunt.file.readJSON('package.json'), meta: { banner: '/*!\n' + ' * reveal.js <%= pkg.version %> (<%= grunt.template.today("yyyy-mm-dd, HH:MM") %>)...
var funnel = require('broccoli-funnel'), findup = require('findup-sync'), util = require('../util'), path = require('path'); module.exports = function exportAssets( module ) { var basename = path.basename(module, '.js').replace(/js$/, ''), modulePath = require.resolve(module), moduleDir = path.dirname(...
var searchData= [ ['sleep_2eh',['sleep.h',['../sleep_8h.html',1,'']]], ['syscalls_2ec',['syscalls.c',['../syscalls_8c.html',1,'']]] ];
let expect = require('chai').expect; let TestUtils = require('react-addons-test-utils'); let sinon = require('sinon'); let React = require('react'); let Rayon = require('../src/index'); describe('Rayon', function(){ it('should not render the modal if isOpen is set to false', function() { let renderedComponent = Te...
// Firebase child's var ref = new Firebase('https://cepatsembuh.firebaseio.com'); var puskesmas = ref.child('puskesmas'), faskes = puskesmas.child('kelapa_gading'); function antrian(){ var ref = new Firebase('https://cepatsembuh.firebaseio.com'), puskesmas = ref.child('puskesmas'), faskes = puskesmas.child...
__history = [{"date":"Tue, 11 Nov 2014 20:06:26 GMT","sloc":38,"lloc":20,"functions":5,"deliveredBugs":0.1703016990363956,"maintainability":86.51618249331524,"lintErrors":[],"difficulty":8.129032258064516}]
'use strict'; var path = require('path'); var fs = require('fs'); var program = require('commander') var pack = require('../package.json'); var server = require('./server.js'); var privateKey = fs.readFileSync(__dirname+'/ssl-certs/server.key', 'utf8'); var certificate = fs.readFileSync(__dirname+'/ssl-certs/serv...
module.exports = function(grunt) { 'use strict'; require('time-grunt')(grunt); require('load-grunt-tasks')(grunt); var _ = require('lodash-node'); // personal stuff var userConfig = { kentcdodds: { projectPath: '~/Developer/parakeet-js', clock: 'https://docs.google.com/a/doddsfamily.us/spr...
// All material copyright ESRI, All Rights Reserved, unless otherwise specified. // See https://js.arcgis.com/4.8/esri/copyright.txt for details. //>>built define("require exports ./gfx/Circle ./gfx/Group ./gfx/Image ./gfx/Path ./gfx/Rect ./gfx/Shape ./gfx/Surface ./gfx/svgSurface ./gfx/Text".split(" "),function(m,a,b,...
/* * ***** BEGIN LICENSE BLOCK ***** * Zimbra Collaboration Suite Web Client * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Zimbra, Inc. * * The contents of this file are subject to the Zimbra Public License * Version 1.3 ("License"); you may not use this file except in * compliance with the License. ...
(function($, window, document, undefined) { var pluginName = "intlTelInput", defaults = { preferredCountries: ["us", "gb"], // united states and united kingdom initialDialCode: true, americaMode: false, onlyCountries: [] }; function Plugin(element, options) { this.element = ele...
module.exports = /******/ (function(modules) { // webpackBootstrap /******/ // The module cache /******/ var installedModules = {}; /******/ // The require function /******/ function __webpack_require__(moduleId) { /******/ // Check if module is in cache /******/ if(installedModules[moduleId]) /******/ ret...
define([ 'matreshka_dir/core/var/sym', 'matreshka_dir/matreshka.class', 'matreshka_dir/matreshka-array/processrendering', 'matreshka_dir/matreshka-array/triggermodify', 'matreshka_dir/matreshka-array/recreate', 'matreshka_dir/matreshka-array/indexof' ], function(sym, MK, processRendering, triggerModify, recreate,...
var searchData= [ ['logger_2ecpp',['Logger.cpp',['../_logger_8cpp.html',1,'']]] ];
/** * In this file, we create a React component * which incorporates components provided by Material-UI. */ import React, {Component} from 'react'; import getMuiTheme from 'material-ui/styles/getMuiTheme'; import MuiThemeProvider from 'material-ui/styles/MuiThemeProvider'; import { Provider } from 'react-redux'; imp...
import Phaser from 'phaser' import SimplexNoise from '../../tools/simplex' import { getParameterByName } from '../../utils' export default class extends Phaser.Sprite { constructor ({ game, x, y, base_x, base_y, asset, melanosome, immortal }) { var spriteName = "tyrosine"; var isCrazy = getParameterByName("...