code
stringlengths
2
1.05M
const fs = require("fs"); const cp = require("child_process"); cp.execSync("rm -Rf node_modules") const file = fs.readFileSync("package.json") const content = JSON.parse(file) const dependencies = content.dependencies; content.dependencies = undefined; const devDependencies = content.devDependencies; content.devDepen...
var Bacon = require('baconjs').Bacon; var fs = require('fs'); // bacon-fromnodecallback var read = Bacon.fromNodeCallback(fs.readFile, 'input.txt'); read.onError(function(error) { console.log("Reading failed: " + error); }); read.onValue(function(value) { console.log("Read contents: " + value); }); // bacon-repea...
"use strict"; var core_1 = require('@angular/core'); require('./baFullCalendar.loader.ts'); var BaFullCalendar = (function () { function BaFullCalendar() { this.onCalendarReady = new core_1.EventEmitter(); } BaFullCalendar.prototype.ngAfterViewInit = function () { var calendar = jQuery(this....
/** * nn19.js * * @author <a href="https://github.com/pahund">Patrick Hund</a> * @since 24 Jul 2016 */ import fullRange from "../processors/fullRange"; import button from "../processors/button"; import messages from "../messages"; const mapping = new Map([ [ "mod-wheel", { name: "NN19 mod ...
var ImageData = { greg: { width:330, top:0, left:-15, url:'G.jpg' }, wolf: { width:330, top:0, left:-15, url:'W.jpg' }, sheep: { width:330, top:0, left:-15, url:'S.jpg' }, facade: { width:350, top:-46, left:-32, url: 'Facade.jpg'}, home: { width:900, top:-10, left:-338, url: 'Home.jpg'}, C:...
"use strict"; module.exports = function (error) { return { allow : error.message, code : 405 }; };
import builtinControls from './controls/builtin' import is from './utils/is' const create = (userControls = []) => { const controls = [...userControls, ...builtinControls] const runtime = (input, success = () => {}, error = () => {}) => { const iterate = gen => { const yieldValue = isError => ret => { ...
//CUSTOM MIDDLEWARE TO DO CUSTOM AUTHENTICATION module.exports = exports = (req,res,next) => { if (req.header("X-Auth")==="my_secret") { next() } else { res.status(401).end(); //UNAUTHORIZED! } };
var http = require('http'); var express = require('express'); var config = require('./config.js'); var app = express(); var server = http.createServer(app); app.use(express.logger()); app.use(express.bodyParser()); app.use(express.errorHandler({ dumpExceptions: true, showStack: true })); require('./lib/routes/static...
'use strict'; angular.module("ngLocale", [], ["$provide", function($provide) { var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; function getDecimals(n) { n = n + ''; var i = n.indexOf('.'); return (i == -1) ? 0 : n.length - i - 1; } function getVF(n...
import React from 'react'; import { connect } from 'react-redux'; import { logIn, selectAuction } from '../actions'; import LogIn from '../components/LogIn'; import Select from '../components/Select'; function Header({ dispatch, user, selectedAuction }) { return ( <div className="header"> <Select v...
var express = require("express"), bodyParser = require("body-parser"), compression = require('compression'), methodOverride = require('method-override'), morgan = require('morgan'), mongoose = require('mongoose'), ...
/** * Enemy object, extends Phaser.Sprite */ var ticks = 0; var Enemy = function(game, scale, sprite) { this._game = game; this._state = this._game.state.getCurrentState(); //properties this.hp = 1; this.facing = ""; this.movespeed = 90; this.facing = ""; startPosition = this._stat...
import Vue from 'vue' import template from './template.html' import StationList from '../station-list' import Settings from '../settings' import Player from '../player' import ErrorMessage from '../error-message' export default Vue.component('App', { template, data: () => ({ showSettings: false }), compone...
'use strict'; var validRegExp = require('../valid-reg-exp'), re = /\/[a-xz]*u[a-xz]*$/; module.exports = function () { return Boolean(String(validRegExp(this)).match(re)); }; //# sourceMappingURL=is-unicode-compiled.js.map
{ super[super().methodName](); }
// 中文编码 utf8 var _slider = document.createElement("div"); addClass(_slider, "slider-item"); var container = document.createElement("div"); var floor = Math.floor; var ceil = Math.ceil; var round = Math.round; var abs = Math.abs; /** * * @param {Boolean|Array|Function} autoplay */ function slider(autoplay, circle =...
import * as ClairNamedExports from './esm/namedExport' const Clair = { ...ClairNamedExports, install: (Vue, option) => { Object.values(ClairNamedExports).forEach(componentAsPlugin => { if (typeof componentAsPlugin?.install === 'function') { Vue.use(componentAsPlugin, option) } }) } } ...
import React, { Component } from 'react'; import PropTypes from 'prop-types'; import './style.global.css'; export default class Avatar extends Component { static propTypes = { src: PropTypes.string, fallback: PropTypes.string, }; static defaultProps = { fallback: 'assets/images/u...
'use strict'; const common = require('../common'); const fixtures = require('../common/fixtures'); const assert = require('assert'); const child = require('child_process'); const path = require('path'); const failures = []; const slashRE = /\//g; const backslashRE = /\\/g; const resolveTests = [ [ path.win32.resolv...
/* File Created: July 24, 2013 */
var File = require('vinyl'); // return true if `obj` can support properties; otherwise false var isObject = function isObject(obj) { return Object(obj) === obj; }; // returns a vinyl File that represents `maybeFile`, if maybeFile is already a vinyl File then // it is returned; otherwise a vinyl file is constructed ...
// Regular expression that matches all symbols in the Geometric Shapes block as per Unicode v4.1.0: /[\u25A0-\u25FF]/;
/* * */ import React from 'react'; import {Navbar,Preloader,Button} from 'react-materialize'; import {connect} from 'react-redux'; import {makeSelectCredentials,makeSelectDetails} from './selectors'; import { createStructuredSelector } from 'reselect'; import {login,logout} from "./actions"; import '../../styles/hom...
/** * Copyright 2012-2019, Plotly, Inc. * All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ 'use strict'; var glslify = require('glslify'); var vertexShaderSource = glslify('./shaders/vertex.glsl'); var contextShaderSo...
import React from 'react'; import { formatPrice } from '../helpers'; class SoldItem extends React.Component { constructor() { super(); this.renderOrderItem = this.renderOrderItem.bind(this); } renderOrderItem(key) { const carpet = this.props.carpets[key]; const juice = this.props.juice[key]; const numbe...
var app = require('http').createServer(handler); var io = require('socket.io')(app); var fs = require('fs'); var SnakeServer = require('./snake/Game.js'); var serverIp = '0.0.0.0'; var serverPort = 4321; var players = 0; var clients = []; var game = new SnakeServer(); game.onAdvanceTick = function(allPlayersDead) ...
var PrologPrepare = function(){ var that = this; this.init = function(){}; /** * Provides some preparsing support for the prolog interpreter. */ this.process = function(term, command){ var cmd = that.prepareCommand(command); freeform(term, cmd); }; /** * Provide support for unification using '=' an...
(function ($) { "use strict"; // Internet explorer 6 or 7? var ie67mode = (navigator.appName == 'Microsoft Internet Explorer' && /MSIE [67]/.test(navigator.userAgent)); var previousDocumentStack = []; var currentDocument = document; // Private utility functions // Adds attributes to an HTML Element v...
import {deleteRoom} from './roomAction'; import {deleteChoosedOrder} from './orderAction'; import {deleteDepartments} from './departmentAction'; import config from '../../config'; export function parseJSON(response) { return response.json(); } import { FETCHING_DONE, FETCHING_DATA_REQUEST, CLOSE_MODE...
'use strict'; var cmd = require('./commander'); var mac = require('mac'); module.exports = mac.mac({ // Tasks that watch never emit an "end" event so we must do the next closest // thing and watch for any data chunks. This is generally OK because watch // tasks are paired with development and live-reload ...
'use strict' const standard = require('mocha-standard') describe('code style', function () { it('should be conforms to standard', standard.files([ 'index.js', 'test-v3/**/*.js', 'src-v3/**/*.js' ])) })
'use strict'; const Path = require('path'), Notification = require('atom').Notification, Constants = require('./../helpers/constants'), DataBase = require('./../helpers/database'); class ProjectView extends HTMLElement { // native createdCallback () { this.classList.add('list-item'); ...
import React from "react" import { mount } from "enzyme" import FeaturedGene from "../FeaturedGene" describe("FeaturedGene", () => { let rendered let featuredGene beforeEach(() => { featuredGene = { title: "Gold", href: "/gene/gold", image: { url: "gold.jpg", }, } re...
/** * Created by pi on 9/17/16. */ $(function () { var recipesDataTable = $('#recipesTable').DataTable(); var selected = [], lines = []; var dialog, form, // From http://www.whatwg.org/specs/web-apps/current-work/multipage/states-of-the-type-attribute.html#e-mail-state-%28type=email%29 em...
/* global require, describe, it */ 'use strict'; // MODULES // var // Expectation library: chai = require( 'chai' ), // Module to be tested: isInt16Array = require( './../lib' ); // VARIABLES // var expect = chai.expect, assert = chai.assert; // TESTS // describe( 'validate.io-int16array', function tests()...
test('Create a CustomDescriptor (boolean true)', function() { expect(10); visit('/'); andThen(function() { equal(find('.result-item').length, 0, "No result yet"); visit('/custom_descriptor/new'); fillIn('.field-input[name=string]', 'Hello World'); fillIn('.field-input[name...
var width, height; var canvas; var player function resize(e) { engine.resize(window.innerWidth, window.innerHeight); } function start() { canvas = LAN.id_get_dom('render'); width = window.innerWidth; height = window.innerHeight; engine = new LAN.Engine(width, height, canvas); scene = new LA...
$(function () { //Textare auto growth autosize($('textarea.auto-growth')); // console.log('run') //Datetimepicker plugin $('.datetimepicker').each(function() { var $this = $(this); $this.bootstrapMaterialDatePicker({ format: $this.data('format'), clearButton:...
var Utils = require('./utils'); var path = require('path'); var fs = require('fs'); var AsposeStorage = require('./aspose-storage'); function AsposeTasks(config) { this.appSID = config.appSID; this.appKey = config.appKey; this.baseURI = config.baseURI; } /* Resources Methods */ AsposeTasks.prototype.getR...
// // This is only a SKELETON file for the 'Diamond' exercise. It's been provided as a // convenience to get you started writing code faster. // export const rows = () => { throw new Error('Remove this statement and implement this function'); };
import React, { Component } from 'react'; import PropTypes from 'prop-types'; import Relay from 'react-relay/classic'; import { FormattedMessage } from 'react-intl'; import config from 'config'; // eslint-disable-line require-path-exists/exists import Box from '@material-ui/core/Box'; import Button from '@material-ui/c...
import EmberCollection from 'ember-collection/components/ember-collection'; import layout from './ember-virtual-collection/template'; import Ember from 'ember'; const hasTouch = ('ontouchstart' in window) || window.DocumentTouch && document instanceof window.DocumentTouch; const { set } = Ember; export default EmberC...
'use strict'; var mongoose = require('mongoose'), fs = require('fs'), path = require('path'), util = require('util'), _ = require('lodash'), errorHandler = require(path.resolve('./modules/core/server/controllers/errors.server.controller')), Project = mongoose.model('Project'), multiparty = require('mult...
import EVENTS from '../events.js'; import external from '../externalModules.js'; import toolColors from '../stateManagement/toolColors.js'; import drawHandles from '../drawing/drawHandles.js'; import { state } from '../store/index.js'; import { getToolState } from '../stateManagement/toolState.js'; import { clipToBox }...
$(function() { $(".fa fa-eye").click(function() { $('#para2').toggleClass('highlight'); }); });
/** * @fileoverview A visual containing an arbitrary model * @author Tony Parisi */ goog.provide('SB.Model'); goog.require('SB.Visual'); /** * @constructor * @extends {SB.Visual} */ SB.Model = function(param) { SB.Visual.call(this, param); this.frame = 0; this.animating = false; this.frameRate = SB.Model...
// convert add-stops modifications to reroute modifications db.modifications.update({ 'type': { '$eq': 'add-stops' }}, { '$set': { 'type': 'reroute' }}, { multi: true })
(function (window) { 'use strict'; var COMPONENT_SELECTOR = '[data-poller]'; var __NEXT_CHART_ID__ = 0; var nextChartId = function() { return __NEXT_CHART_ID__++; } function onClick($el, callback) { $el.click(function(event) { event.preventDefault(); callback($(this)); }); } ...
// SASS // ============================================== module.exports = function(grunt) { grunt.config('sass', { dist: { options: { style: 'compressed' }, files: { 'assets/css/rio.css' : 'src/sass/application.scss' } ...
/** * Genera los archivos UMD */ export default { entry: 'dist/index.js', dest: 'dist/bundles/charts.umd.js', sourceMap: false, format: 'umd', moduleName: 'vervaljs.charts', globals: { '@angular/core': 'ng.core', '@angular/common': 'ng.common' // 'rxjs/Observable': 'Rx', ...
(function() { App.ApplicationView = Ember.View.extend({ templateName: 'application' }); }).call(this);
/** * @ngdoc module * @name fl.model_factory * @module fl * @requires fl.object_system * @description * Model factory * This module implements a factory of model object services. * It exports two services: * - {@sref FlModelCache}, a global cache of model instances. * - {@sref FlModelFactory}, a service that ...
define(['handlebars', 'thorax'], function (Handlebars) { /** * Register a normal handlebars helper * * Use in any .hbs file via: {{greeting}} * * View test/helpers/helpers.spec for testing best practices * */ Handlebars.registerHelper('greeting', function () { return new Handlebars.SafeStr...
import ArrayUtil from './ArrayUtil' import ByteEncoder from './ByteEncoder' import TextEncoder from './TextEncoder' import TextEncodingError from './Error/TextEncoding' // empty chain instance instantiated lazily by static Chain.empty method let emptyChain = null /** * Container for storing strings, Unicode code po...
'use strict'; var _ = require('lodash'); module.exports = function (options) { var seneca = this; var plugin = 'events'; var version = '1.0'; options = seneca.util.deepextend({ prefix: '/api/' }, options); seneca.add({role: plugin, cmd: 'getEvent'}, proxy); seneca.add({role: plugin, cmd: 'listEven...
if (typeof JSDOC == "undefined") JSDOC = {}; /** @class Search a {@link JSDOC.TextStream} for language tokens. */ JSDOC.TokenReader = function() { this.keepDocs = true; this.keepWhite = false; this.keepComments = false; } /** @type {JSDOC.Token[]} */ JSDOC.TokenReader.prototype.tokenize = function(/**JSDOC...
$(function(){ var baseurl=$('#htmlbody').attr('baseurl'); /* OBJECT for DRY operations */ var dry={}; /* songs in music object dom my music Playlist menu build playlists object build menu link build playlist page put songs in playlists arrays playlists pages */ dry.dom_songs=function(songs_arr){ ...
// dialog module.exports = { type: { flow : true, sectioningRoot: true }, contents: { flow: true }, attributes: 'open' }; /** * この要素は、dt,thの子要素に設置できます * このルールはdt,thに記載しています */
const gulp = require('gulp'); const rename = require('gulp-rename'); const touch = require('gulp-touch'); const sass = require('gulp-sass'); // // sassDirectoryPath以下のsass or scssファイルをcssにコンパイルしてbuildPath以下に保存します。 // see: https://www.npmjs.com/package/gulp-sass // module.exports = (config) => () => { return gulp.src...
import { deserialize } from '../core/utils.es6'; import registry from '../config/storeRegistry.es6'; import Store from '../core/store.es6'; import * as tpl from '../core/tpl.es6'; var store = new Store(registry); // Single call store.get('one').then(data => { console.log(data.greetings); }); // This one fails and r...
// Generated by CoffeeScript 1.10.0 $(function() { var full, showIcon, toc, up; up = $('.icon-arrow-up'); up.click(function() { $('html, body, .fullscreen').animate({ scrollTop: 0 }, 1000); }); showIcon = function(top) { if (top > 1000) { up.show(); } else { up.hide(); } ...
import {compose} from 'compose' import {connect} from 'store' import PropTypes from 'prop-types' import React from 'react' class AutoFocus extends React.Component { state = { completed: false } constructor(props) { super(props) props.onEnable(() => this.reset()) } render()...
'use strict'; const ini = require('ini'); class INISerializer { deserialize(data){ return ini.parse(data); } serialize(data){ return ini.stringify(data); } } module.exports = INISerializer;
angular.module('swailMail').controller('threadController', ['$rootScope', '$scope', 'helper', '$location', 'googleApi', function ($rootScope, $scope, helper, $location, googleApi) { $scope.$on('$locationChangeSuccess', function (event, newUrl, oldUrl) { // if ($location.search().threadID) { // v...
class NotesInitLifecycle { created(entity) { entity.notes = ''; } hpChanged() { } destroyed() { } } module.exports = NotesInitLifecycle;
/** * @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 CanvasPool = require('../display/canvas/CanvasPool'); var CanvasTexture = require('./CanvasTexture'); var Class = ...
module.exports = require('./lib/mtgstats');
var Traverse = require('traverse'); var assert = require('assert'); exports['negative update test'] = function () { var obj = [ 5, 6, -3, [ 7, 8, -2, 1 ], { f : 10, g : -13 } ]; var fixed = Traverse.map(obj, function (x) { if (x < 0) this.update(x + 128); }); assert.deepEqual(fixed, [ 5, 6, 125, [ 7...
/*global FM*/ /** * Represent an axis aligned bounding box to add to a game object for physics * behavior and collisions. * @class FM.AabbComponent * @extends FM.PhysicComponent * @param {int} pWidth Width of the aabb. * @param {int} pHeight Height of the aabb. * @param {FM.GameObject} pOwner The game object to ...
/* * Copyright (c) 2016-present, Parse, LLC * All rights reserved. * * This source code is licensed under the license found in the LICENSE file in * the root directory of this source tree. */ import BrowserFilter from 'components/BrowserFilter/BrowserFilter.react'; import BrowserMenu from 'components/BrowserM...
import React, {PropTypes} from 'react'; import styles from './index.scss'; class Separator extends React.Component { static propTypes = { uniqueClassIdentifier: PropTypes.string } render(){ return <div className={`${styles.separator} ${this.props.uniqueClassIdentifier}`}/>; } } export default Separato...
var assert = require('assert'); var http = require('http'); var path = require('path'); var url = require('url'); var fileDefaultTests = 'default_tests.js'; var fileServerSpecificTests = process.env.SERVER_SPECIFIC_TESTS; var URL= url.parse(process.env.BASE_URL || "http://localhost/"); // - - - - - - - - - - - - - -...
const path = require('path'); const webpack = require('webpack'); module.exports = { devtool: 'cheap-module-eval-source-map', entry: [ 'webpack-hot-middleware/client', './src/index' ], output: { path: path.join(__dirname, 'dist'), filename: 'bundle.js', publicPath: '/static/' }, plugins...
"use strict"; angular .module("interview.components") .factory("UserModel", UserModel) UserModel.$inject = ["Auth", "$state"]; function UserModel(Auth) { var service = { logout: logout, register: register, login: login, setCurrentUser: setCurrentUser, getCurrentUser: getCurrentUser }, ...
// Global variables var currentLink; // Stores last link selected so focus can be returned there easily. function initTabs() { // Bind key handlers to all tabs on the page //$('a[role=tab]').on('keyup', function(e) { $(document.body).on('keyup', 'a[role=tab]', function(e) { // Get id of current tab...
var validator = require('../validator') , format = require('util').format , contextify = require('contextify') , assert = require('assert') , path = require('path') , fs = require('fs'); var validator_js = fs.readFileSync(path.join(__dirname, '../validator.js')).toString(); function test(options) { var ...
'use strict'; angular.module('team-locator-app') .controller('LoginCtrl', function($scope, $rootScope, $location, TeamLocatorService, cookies) { var login = TeamLocatorService.login; $scope.submit = function() { // $location.path('/dashboard'); var postData = {}; ...
/** * Created by rastislavbertusek on 06.03.17. */ "use strict"; var prices_1 = require("../../data/prices"); var _ = require("lodash"); var BasketCalculator = (function () { function BasketCalculator() { } BasketCalculator.prototype.generateBasketReceipt = function (basketItems) { var _this = thi...
/*! * # Semantic UI 2.2.4 - Dropdown * http://github.com/semantic-org/semantic-ui/ * * * Released under the MIT license * http://opensource.org/licenses/MIT * */ ;(function ($, window, document, undefined) { "use strict"; window = (typeof window != 'undefined' && window.Math == Math) ? window : (typeof s...
'use strict'; angular.module('myApp.view1', ['ngRoute']) .config(['$routeProvider', function($routeProvider) { $routeProvider.when('/view1', { templateUrl: 'view1/view1.html', controller: 'View1Ctrl' }); }]) .controller('View1Ctrl', ['$http','$scope','$log', function($http, $scope, $log) { $scope.contr...
var mongoose = require('mongoose'); var ObjectId = mongoose.Types.ObjectId; var tinify = require('tinify'); var pagseguro = require('pagseguro.js'); var dotenv = require('dotenv').load(); var User = require('../model/user'); var EventSchema = require('../model/event'); var ConfirmationSchema = require('../model/confirm...
'use strict'; var dirs = require('../../../config/directories'); var go = module.exports = function (app, express) { app.use('/ses-see-css', express.static(dirs.css)); };
import React, { PropTypes } from 'react' import { connect } from 'react-redux' import Feedbackify from '../components/feedbackify/feedbackify' const FeedbackifyContainer = ({ email }) => email ? <Feedbackify email={email} /> : null FeedbackifyContainer.propTypes = { email: PropTypes.string, } const mapStateToProps...
/** * Lo-Dash 2.3.0 (Custom Build) <http://lodash.com/> * Build: `lodash modularize modern exports="node" -o ./modern/` * Copyright 2012-2013 The Dojo Foundation <http://dojofoundation.org/> * Based on Underscore.js 1.5.2 <http://underscorejs.org/LICENSE> * Copyright 2009-2013 Jeremy Ashkenas, DocumentCloud and In...
/** * @author umin * @since 2016-08-21 * @copyright Copyright (c) 2016, YZKJ * @version 1.0 * @component iscroll * @description */ 'use strict'; define(function(require, exports, module) { require('./scroller'); var subEvent = function() { var evts = new Map(), me = this; evts.put("widge...
// flow-typed signature: 657ca6aaca627e786cbd8f9010d1d788 // flow-typed version: <<STUB>>/live-server_v^1.2.0/flow_v0.59.0 /** * This is an autogenerated libdef stub for: * * 'live-server' * * Fill this stub out by replacing all the `any` types. * * Once filled out, we encourage you to share your work with th...
import {getFaucet} from "../branding"; export const blockTradesAPIs = { BASE: "https://api.blocktrades.us/v2", COINS_LIST: "/coins", ACTIVE_WALLETS: "/active-wallets", TRADING_PAIRS: "/trading-pairs", DEPOSIT_LIMIT: "/deposit-limits", ESTIMATE_OUTPUT: "/estimate-output-amount", ESTIMATE_INP...
// 获取API地址 idiomApp.factory("apiAddress", [function() { var host = "http://127.0.0.1/backend/mygala/idiom/api"; return { get: function() { return host; } } }]); // 校验算法 /* 请求接口 开始 */ // 请求成语数据 idiomApp.factory("apis", [function() { var hexcase = 0; /* hex output format. ...
'use strict'; const express = require('express'); const router = express.Router(); const request = require('request'); const getQuote = require('../controllers/getQuote'); router.get('/getquote', getQuote); router.post('/getquote', getQuote.find); module.exports = router;
import React from 'react' import { Embed } from 'semantic-ui-react' const EmbedExampleCustom = () => ( <Embed icon='right circle arrow' placeholder='/images/image-16by9.png' url='https://www.myfav.es/jack' /> ) export default EmbedExampleCustom
import React from 'react'; import { connect } from 'react-redux' import { updateDocument } from '../actions' let InputText = ({ dispatch, field, doc }) => { return ( <input type='text' value={doc[field].value} className='form-control' onChange={e => dispa...
const config = { delimiter: ',', // auto-detect newline: '', // auto-detect quoteChar: '"', header: true, dynamicTyping: false, preview: 0, encoding: '', worker: false, comments: false, step: undefined, complete: undefined, error: undefined, download: false, skipEmptyLines: true, chunk: un...
require('./coverage.js')();
module.exports={A:{A:{"2":"jB","8":"L H G E A B"},B:{"1":"8","8":"C D e K I N J"},C:{"1":"0 1 2 3 7 9 U V W X Y Z a b c d f g h i j k l m n o M q r s t u v w x y z JB IB CB DB EB O GB HB","2":"gB","8":"4 5 BB F L H G E A B C D e K I N J P Q R S T aB ZB"},D:{"1":"0 1 2 3 7 8 9 P Q R S T U V W X Y Z a b c d f g h i j k l...
define("ember-data/-private/system/store/finders", ["exports", "ember", "ember-data/-private/debug", "ember-data/-private/system/store/common", "ember-data/-private/system/store/serializer-response", "ember-data/-private/system/store/serializers"], function (exports, _ember, _emberDataPrivateDebug, _emberDataPrivateSys...
/** * Created by mdoutoure on 18/03/2015. */ app.factory('detailIndicateurFactory',function(Restangular){ return Restangular.service(getRoute('get_detail_indicateurs')); });
// a list of all math identites const IDENTITIES = [ // [input, output, [ // [test-input-1, test-output-1], // [test-input-2, test-output-2], // ... // ]], ['x ^ 2', 'x * x', false, [ ['3 ^ 2', '3 * 3'], ['z ^ 2', 'z * z'], ['(2 + 3) ^ 2', '(2 + 3) * (2 + 3)'], ]], ['x * x', 'x ^ 2'...
import $ from 'jquery'; import Backbone from 'backbone'; import BackboneValidation from 'backbone-validation'; import BackboneStickit from 'backbone.stickit'; import Marionette from 'backbone.marionette'; import Toast from 'toastr'; import Contact from '../../../domain/contacts/model.js'; import template from '../tem...
/** * * HomePageComponents * */ import React from 'react'; import styled from 'styled-components'; import { CommonLeftHeader } from 'components/CommonComponents'; import SmallSectionHeader from 'components/SmallSectionHeader'; function HomePageComponents() { return ( <div> </div> ); } HomePageComponents....