text
stringlengths
2
1.04M
var dir_043145f9a5fd54162f2b19a696c623ac = [ [ "cBoolValueGenerator.cpp", "a00186_source.html", null ], [ "cBoolValueGenerator.h", "a00187_source.html", null ], [ "displaywidget.cpp", "a00168_source.html", null ], [ "displaywidget.h", "a00173_source.html", null ], [ "stdafx.cpp", "a00109_source.html...
zaboxServices.factory('Message', ['$resource', function ($resource) { return $resource('api/json/messages/:messageId', {}, { query: { method: 'GET', isArray: true }, get: { method: 'GET' }, delete: { method: 'DELETE' } }); }]);
export const LOGIN = 'login'; export const LOGIN_FAIL = 'login_fail'; export const LOGIN_SUCCESS = 'login_success'; export const PRODUCTS_DELETE = 'products_delete'; export const PRODUCTS_FETCH = 'products_fetch'; export const PRODUCTS_FETCH_SUCCESS = 'products_fetch_success'; export const PRODUCT_CLEAN = 'product_cl...
//# sourceMappingURL=component---src-pages-new-page-js-e6368b5e95be6e8ea855.js.map
import React from 'react' import Router from 'next/router' import IconMenu from 'material-ui/IconMenu'; import FlatButton from 'material-ui/FlatButton'; import RaisedButton from 'material-ui/RaisedButton'; import {Toolbar, ToolbarGroup, ToolbarSeparator, ToolbarTitle} from 'material-ui/Toolbar'; import AutoComplete fr...
$.extend(window.lang_lt, { "Title": "Norite daugiau ..", "installApp": "Naudokite programą pasidalinti šį apklausą!", "installAppComments": "Parsisiųsti ją nemokamai.", "haveApp": "Aš App!", "SecondPageButton": "Groti", "Welcome": "Sveiki atvykę!", "rules": "1. Paspauskite ant app nuorodą įkelti votation <br/> 2. Pasir...
CKEDITOR.plugins.setLang("scayt","mk",{about:"About SCAYT",aboutTab:"About",addWord:"Add Word",allCaps:"Ignore All-Caps Words",dic_create:"Create",dic_delete:"Delete",dic_field_name:"Dictionary name",dic_info:"Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dict...
var express = require('express') var router = express.Router() var userController = require('../controllers/userController') const winston = require('winston') const stackTrace = require('stack-trace') const countAppLogicCalls = () => { const stack = stackTrace.get() // TODO filter out calls from services and data...
var searchData= [ ['upsampleattr',['UpsampleAttr',['../structrk_1_1nn_1_1_upsample_attr.html',1,'rk::nn']]] ];
const validator = require('validator'); const geosearch = require('../../nominatim/nominatim'); const {getCoordinatesForName} = require('../../geocode/geocode'); const Friend = require('../../models/Friend'); const Timezone = require('../../models/Timezone'); const User = require('../../models/User'); const PAGE_SIZE...
import React from 'react'; import './Project.css'; const nl2br = (str) => str.split("\n").map((item, key) => ( <React.Fragment key={key}>{item}<br/></React.Fragment> )); /** * Primer elemento de cada proyecto */ const FirstElement = ({ description, type }) => ( <div className="FirstElement"> <div cl...
function SCALAR2VECTOR() { SCALAR2VECTOR.prototype.define = function SCALAR2VECTOR() { this.nout = -1; var model = scicos_model(); model.sim = list(new ScilabString(["scalar2vector"]), new ScilabDouble([4])); model.out = new ScilabDouble([this.nout]); model.in = new ScilabD...
import React, { useState } from 'react'; import styled from '@emotion/styled'; import PropTypes from 'prop-types'; import { obtenerDiferenciaYear, calcularMarca, obtenerPlan } from '../helper'; const Campo = styled.div` display: flex; margin-bottom: 1rem; align-items: center; `; const Label = styled.label` flex: 0...
/*! * FullCalendar v3.8.0 * Docs & License: https://fullcalendar.io/ * (c) 2017 Adam Shaw */ (function webpackUniversalModuleDefinition(root, factory) { if(typeof exports === 'object' && typeof module === 'object') module.exports = factory(require("fullcalendar"), require("jquery")); else if(typeof define === '...
import { ADD_ARTICLE } from './ExampleConstants'; export function addArticle(payload) { return { type: ADD_ARTICLE, payload} }; export function getData() { return function(dispatch) { return fetch("https://jsonplaceholder.typicode.com/posts") .then(response => response.json()) .then(json...
import React from 'react'; import { connect } from 'react-redux'; import PropTypes from 'prop-types'; import CardForm from '../card-form/card-form'; import * as cardActions from '../../action/card'; // The below mapDispatchToProps is basically this // const mapDispatchToProps = dispatch => ({ // cardRemove: function...
import { combineReducers } from 'redux'; import { NavigationActions } from 'react-navigation'; import { AppNavigator } from '../navigators/AppNavigator'; // Start with two routes: The Main screen, with the Login screen on top. const initialNavState = { index: 1, routes: [ { key: 'InitA', routeName: 'Main' }, ...
var cors = require('cors'); var whitelist = require('../configuration/environment').corsHosts; if (typeof whitelist !== 'undefined' && whitelist.length > 0) { var corsOptions = { origin: function (origin, callback) { if (whitelist.indexOf(origin) !== -1) { callback(null, true) } else { ...
const remarkHighlight = require('remark-highlight.js') module.exports = { pathPrefix: '/', siteMetadata: { siteUrl: 'https://joelhooks.com/', author: 'Joel Hooks', title: 'The blog of Joel Hooks', description: 'This is where I post my things.', keywords: ['Video Blogger'], }, plugins: [ ...
/*global define:false*/ define(['text!plugins/keyvalue/template.html', 'plugins/keyvalue/model', 'text!plugins/keyvalue/setupTemplate.html'], function (keyvaluePluginTemplate, keyvaluePluginModel, setupTemplate) { 'use strict'; return { name : 'keyvaluePlugin', ModelType : k...
export { default as PrimaryButton } from './PrimaryButton' export { default as Link } from './Link'
import { setData } from '@progress/kendo-angular-intl'; setData({ name: "en-LR", identity: { language: "en", territory: "LR" }, territory: "LR", numbers: { symbols: { decimal: ".", group: ",", list: ";", percentSign: "%", ...
var getOwnPropertyDescriptors = (function (Object) { var gOPDs = Object.getOwnPropertyDescriptors; if (gOPDs) return gOPDs; var dP = Object.defineProperty; var gOPD = Object.getOwnPropertyDescriptor; var gOPN = Object.getOwnPropertyNames; var gOPS = Object.getOwnPropertySymbols; return function (object) {...
import { BrowserRouter as Router, Route, Switch } from "react-router-dom"; import Navbar from "./components/Navbar"; import PrivateRoute from "./components/PrivateRoute"; import LoginPage from "./pages/LoginPage"; import CanvasPage from "./pages/CanvasPage"; // import PublicPage from "./pages/PublicPage"; import SignUp...
import {fetchProductList,fetchTodayProductList, fetchOtherProductList, fetchProductDetail,fetchNetWorthList,fetchFillList,fetchTypeList,XTProductOrder, fetchProductDetailFull,fetchPreProductList,fetchMeetingDetail,fetchBuyCustomerList, sortBuyCustomerList,checkCustomerIsCommon,addShareLog,fetchPreprocessList,su...
import React from "react" const NotFoundPage = () => ( <div> <h1>ayy... nothing here!</h1> <p>You just hit a route that doesn&#39;t exist... the sadness.</p> </div> ) export default NotFoundPage
module.exports = require('./commonjs/convertToJson')
import { concatStyleSets, getFocusStyle } from '../../../Styling'; import { memoizeFunction } from '../../../Utilities'; export var getStyles = memoizeFunction(function (theme, customStyles) { var splitButtonStyles = { splitButtonContainer: { position: 'relative', display: 'inline-bl...
/* * * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); y...
rafce
const gulp = require('gulp'); const nodemon = require('gulp-nodemon'); const eslint = require('gulp-eslint'); const ts = require('gulp-typescript'); const merge = require('merge2'); /** * Gulp task to compile TS to JS */ gulp.task('scripts', function() { var tsResult = gulp.src('lib/**/*.ts') .pipe(ts({ ...
// FIXME: Attempted import error: 'theme' is not exported // from 'tailwindcss/js/tailwind.config.js' (imported as // 'tailwindcss'). const tailwindcss = { theme: { screens: { xs: `${16 + 512 + 16}px`, // => @media (min-width: 540px) { ... } sm: `${16 + 640 + 16}px`, // => @media (min-width: 672px) { .....
import React, {Component, PropTypes} from "react"; import {View, Image, Text} from "react-native"; import Icon from './Icon'; import { getColor } from './helpers'; export default class Avatar extends Component { static propTypes = { image: PropTypes.shape({ type: PropTypes.oneOf([Image]) }), icon:...
import React, { Component } from 'react'; import { connect } from 'react-redux'; import { fetchHotelList } from '../../../actions/actionHotel'; import { Link } from 'react-router-dom'; import Header from '../../layout/header'; import Footer from '../../layout/footer'; import SearchField from './searchField'; import Sor...
/* * * Blocks reducer * */ import produce from 'immer'; import * as actionTypes from 'stores/blocks/constants'; export const initialState = { page: { width: 1000, height: 5000, }, elements: (() => { const arr = []; const WIDTH = 30; const HEIGHT = 30; let counter = 0; for (let i ...
'use strict'; const swaggerPlugin = require('fastify-swagger'); const $RefParser = require('json-schema-ref-parser'); const areciboPlugin = require('arecibo'); const swaggerConfig = require('./configs/swagger-config'); const areciboConfig = require('./configs/arecibo-config'); const corsConfig = require('./configs/cor...
// create the module and name it scotchApp var app = angular.module('codeRobo', [ 'ngRoute', 'ngCookies', 'ngResource', 'ngAnimate', 'ui.router', 'codeRobo-breadcrumb', // 'dateFilter', // 'tagjoiner', 'codeRobo-factory', 'codeRobo-factory', 'codeRobo-settings', 'codeRobo-homeView', 'codeRobo...
let esMX = { "pageTitle" : "Nintendo Switch Payload Loader", "pageSubtitle" : "Fusee Launcher portado a JavaScript usando WebUSB.", "dangerDanger" :"Esto ha sido probado moderadamente. aunque no se han descubierto problemas, no soy responsable si pasa algo malo!", "warningWindows" :"Esto NO funciona en Win...
module.exports = { prefix: 'fas', iconName: 'dice-four', icon: [448, 512, [], "f524", "M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64zM128 384c-17.67 0-32-14.33-32-32s14.33-32 32-32 32 14.33 32 32-14.33 32-32 32zm0-192c-17.67 0-32-14.33-32-32s14.33-32 32...
/* Copyright 2019-present OmiseGO Pte Ltd Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing,...
const router = require('express').Router(); const res = require('express/lib/response'); const { Post, User } = require('../../models'); const withAuth = require('../../utils/auth'); // READ all posts router.get('/', async (req, res) => { try { const postData = await Post.findAll({ include: [{ ...
// ==UserScript== // @name 9gag_blinking_banner // @namespace 9gag.com // @version 0.1.0 // @grant none // ==/UserScript== const potentialFuns = document.getElementsByClassName('funoff'); if (!potentialFuns.length) { return; } for (let i = potentialFuns.length - 1; i >= 0; i--) { potentialFuns...
// http://www.benjaminmoore.com/ 'use strict'; var BRAND = 'Benjamin Moore' function getJSON() { return Promise.resolve(require('./json/bm.json')); } function mapColors(colors) { return colors.map(function(color) { return { brand: BRAND, name: color.colorName, color: color.RGB }; }); ...
module.exports = { root: true, parserOptions: { ecmaVersion: 2017 }, env: { node: true, es6: true }, extends: ["eslint:recommended", "prettier"], plugins: ["prettier"], rules: { "prettier/prettier": "error" }, overrides: [ { files: ['**/*.tes...
/* * Copyright 2015, Yahoo Inc. * Copyrights licensed under the New BSD License. * See the accompanying LICENSE file for terms. */ import { createError, filterProps, getNamedFormat } from '../utils'; const DATE_TIME_FORMAT_OPTIONS = [ 'localeMatcher', 'formatMatcher', 'timeZone', 'hour12', 'week...
//# sourceMappingURL=chunk-2d0d2f22.6fe79351.js.map
// Copyright 2019 The Closure Library Authors. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless requ...
(function(oCanvas, window, document, undefined){ // Define the timeline class var timeline = function () { // Return an object when instantiated var module = { init: function () { var _this = this; // Method for setting the function to be called for each frame this.core.setLoop = function (call...
const path = require('path'); const webpack = require('webpack'); const CopyWebpackPlugin = require('copy-webpack-plugin'); const CleanWebpackPlugin = require('clean-webpack-plugin'); module.exports = { node: { fs: 'empty' }, context: path.join(__dirname, 'src'), entry: { 'module': './module.ts', // '...
"use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { extendStatics = Object.setPrototypeOf || ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || function (d, b) { for (var p in b) if (Object.protot...
const config = require('./config'); const teleinfo = require('./teleinfo'); const mqtt = require('./mqtt'); const log = require('./log'); async function disconnect() { await teleinfo.disconnect(); await mqtt.disconnect(); } async function run() { const configHidden = { ...config, mqttPassword: '<hidden>' ...
/* Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license */ CKEDITOR.plugins.setLang( 'specialchar', 'tr', { options: 'Özel Karakter Seçenekleri', title: 'Özel Karakter Seç', toolbar: 'Özel Karakter Ekle' } );
"use strict"; var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); Object.defineProperty(exports, "__esModule", { value: true }); exports["default"] = void 0; var _defineProperty2 = _interopReq...
(window.webpackJsonp=window.webpackJsonp||[]).push([[30],{4002:function(e,t,a){"use strict";a.r(t),a.d(t,"icon",(function(){return o}));a(12),a(4),a(2),a(6),a(3),a(10);var n=a(0),r=a.n(n);function l(){return(l=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var n in a)Object.protot...
import { d as _objectWithoutProperties, b as _slicedToArray, _ as _objectSpread2, e as _extends } from './_rollupPluginBabelHelpers-b49fe34a.js'; import React__default, { forwardRef, useState, useCallback, useImperativeHandle, useMemo } from 'react'; import { V as View } from './view.native-f7a27d15.js'; import './capt...
const roomsMap = { '301-Pasteur': { x: 307, y: 378 }, '305-Feynman': { x: 715, y: 299 }, '306-Aristotle': { x: 721, y: 260 }, '307-Newton': { x: 721, y: 215 }, '308-Heisenberg': { x: 682, y: 70 }, '309-Ada': { x: 720, y: 75 }, '313-Archimedes': {...
import { config } from 'dotenv'; config(); export const development = { username: process.env.DB_USERNAME, password: process.env.DB_PASSWORD || '', database: process.env.DB_DATABASE, host: process.env.DB_HOST, dialect: 'postgres' }; export const test = { username: process.env.TEST_DB_USERNAME, password...
/** * Created by Holger Stitz on 18.08.2016. */ import { I18nextManager } from 'phovea_core'; export class DialogUtils { /** * utility dialog when a session was not found * @param {CLUEGraphManager} manager * @param {string} id session id */ static showProveanceGraphNotFoundDialog(manager,...
!function(r){function t(o){if(e[o])return e[o].exports;var n=e[o]={exports:{},id:o,loaded:!1};return r[o].call(n.exports,n,n.exports,t),n.loaded=!0,n.exports}var e={};t.m=r,t.c=e,t.p="",t(0)}([function(){"use strict"}]);
"use strict"; var _Object$defineProperty = require("babel-runtime/core-js/object/define-property")["default"]; exports["default"] = (function () { function defineProperties(target, descriptors, initializers) { for (var i = 0; i < descriptors.length; i++) { var descriptor = descriptors[i]; var decora...
(window.webpackJsonp=window.webpackJsonp||[]).push([["map-library-sink-js"],{"./MapStore2/web/client/components/map/plugins/sink.js":function(n,e,o){"use strict";o.r(e);var s=o("./MapStore2/node_modules/recompose/es/Recompose.js").createSink;e.default=function(){return{Map:s((function(){})),Layer:s((function(){})),Feat...
/*! * Copyright 2010 - 2017 Pentaho Corporation. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless requir...
'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); var _slicedToArray = function () { function sliceIterator(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s....
const express = require("express"); const app = express(); const port = 3000; app.use(express.static(__dirname)); app.listen(port, () => console.log(`Example app listening on port ${port}!`));
var CDO = require('../../tokenizer').TYPE.CDO; module.exports = { name: 'CDO', structure: [], parse: function() { var start = this.scanner.tokenStart; this.eat(CDO); // <!-- return { type: 'CDO', loc: this.getLocation(start, this.scanner.tokenStart) ...
window.__NUXT__=(function(a,b,c,d,e){return {staticAssetsBase:"https:\u002F\u002Fwww.baca-quran.id\u002Fstatic\u002F1627814429",layout:"default",error:b,state:{notification:{show:a,title:c,message:c},isShowSidebar:a,isSupportWebShare:a,headerTitle:"Baca Qur'an",page:"home",lastReadVerse:b,settingActiveTheme:{name:"dark...
/*! * OpenUI5 * (c) Copyright 2009-2021 SAP SE or an SAP affiliate company. * Licensed under the Apache License, Version 2.0 - see LICENSE.txt. */ sap.ui.define(['sap/ui/Device', 'sap/ui/core/InvisibleText'], function(Device, InvisibleText) { "use strict"; /** * Tokenizer renderer. * @namespace */ var T...
"use strict"; var isValue = require("./is-value"); module.exports = function (value) { if (!isValue(value)) return false; try { return !isNaN(value); } catch (e) { return false; } };
"use strict"; var $ = require("jquery"), noop = require("core/utils/common").noop, Color = require("color"), pointerMock = require("../../helpers/pointerMock.js"), keyboardMock = require("../../helpers/keyboardMock.js"), fx = require("animation/fx"); require("common.css!"); require("ui/color_box")...
'use strict'; const fs = require('fs'); const path = require('path'); const url = require('url'); const {promisify} = require('util'); const got = require('got'); const normalize = require('normalize-path'); const mime = require('mime'); const debug = require('debug')('asset-resolver'); const globby = require('globby'...
import { COLOR, Create, DrawGridFromOrigin, Grid, Group, Rotate, Scene, Square, Vector, Vector2, } from "cubecubed"; /// This variable keeps track of the time goes by during the animations /// We'll use this to control time, so don't forget to include it to your code let elapsed...
/* Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license */ CKEDITOR.plugins.setLang( 'table', 'ms', { border: 'Saiz Border', caption: 'Keterangan', cell: { menu: 'Cell', insertBefore: 'Insert Cell Before', ...
export default { setItem(key, value) { window.localStorage.setItem(key, value) }, getItem(key) { return window.localStorage.getItem(key) }, removeItem(key) { window.localStorage.removeItem(key) } }
webpackHotUpdate("cms",{ /***/ "./node_modules/css-loader/index.js?!./node_modules/postcss-loader/lib/index.js?!./node_modules/sass-loader/dist/cjs.js?!./src/components/all.sass": /*!****************************************************************************************************************************************...
/** * __PrimeFaces Paginator Widget__ * * A widget for handling pagination that is usually used by other widget via composition, that is, they create and save * an instance of this widget during initialization. After you create a new instance of this paginator, you should set * the `paginate` property to an appro...
import Vue from 'vue'; import Router from 'vue-router'; Vue.use(Router); export default new Router({ routes: [ { path: '/', redirect: '/dashboard' }, { path: '/', component: resolve => require(['../components/common/Home.vue'], resolve), ...
/*! * jQuery BBQ: Back Button & Query Library - v1.2.1 - 2/17/2010 * http://benalman.com/projects/jquery-bbq-plugin/ * * Copyright (c) 2010 "Cowboy" Ben Alman * Dual licensed under the MIT and GPL licenses. * http://benalman.com/about/license/ */ // Script: jQuery BBQ: Back Button & Query Library // // *Versio...
(window["webpackJsonp"] = window["webpackJsonp"] || []).push([[9],{ /***/ "./node_modules/babel-loader/lib/index.js?!./node_modules/vue-loader/lib/index.js?!./resources/js/admin/pages/auth/login.vue?vue&type=script&lang=js&": /*!******************************************************************************************...
import FuzzyCompositeTerm from './FuzzyCompositeTerm.js'; /** * @author {@link https://github.com/Mugen87|Mugen87} * @augments FuzzyCompositeTerm */ class FuzzyAND extends FuzzyCompositeTerm { constructor() { const terms = Array.from(arguments); super(terms); } getDegreeOfMembership() { const terms = this.te...
/** * Interaction for the Profiles module */ jsBackend.Profiles = { init: function() { jsBackend.Profiles.massAddToGroup.init(); jsBackend.Profiles.settings.init(); jsBackend.Profiles.editEmail.init(); jsBackend.Profiles.editPassword.init(); }, massAddToGroup: { ...
/** * 创建标签 * @param funWhenCreateLabelSuccess 创建成功时回调,回传参数为新标签id * @param funWhenCreateLabelFail 创建失败时回调,参数为错误码和错误信息 */ function createLabel(funWhenCreateLabelSuccess, funWhenCreateLabelFail) { var name = $('#labelName').val(); // 需要common.js if (isStrEmpty(name)) { error('标签名称不能为空', 'labelErro...
export default { data() { return { items: [], }; }, methods: { add(item) { this.items.push(item); this.$emit('added'); }, remove(i) { this.items.splice(i, 1); this.$emit('remove'); } } }
/** * * Asynchronously loads the component for TestPage * */ import Loadable from 'react-loadable'; export default Loadable({ loader: () => import('./index'), loading: () => null, });
/* |-------------------------------------------------------------------------- | Providers |-------------------------------------------------------------------------- | | Providers are building blocks for your Adonis app. Anytime you install | a new Adonis specific package, chances are you will register the | provider ...
import React from 'react' import Layout from '../components/layout' const Datenschutz = () => { return ( <Layout> <h1>Datenschutz</h1> </Layout> ) } export default Datenschutz
"use strict"; var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard"); Object.defineProperty(exports, "__esModule", { value: true }); exports["default"] = void 0; var React = _interopRequireWildcar...
// Just define namespace for JSDoc /** @namespace App.Controllers */
"use strict"; module.exports = function (grunt) { // A temporary directory used by amdserialize to output the processed modules. var tmpdir = "./tmp/"; // The final output directory. var outdir = "./build/"; // The grunt.config property populated by amdserialize, containing the // list of files to include in ...
// FILE IS GENERATED BY COMBINING THE SOURCES IN THE "classes" DIRECTORY SO DON'T MODIFY THIS FILE DIRECTLY (function(win) { var whiteSpaceRe = /^\s*|\s*$/g, undef, isRegExpBroken = 'B'.replace(/A(.)|B/, '$1') === '$1'; var tinymce = { majorVersion : '3', minorVersion : '5b3', releaseDate : '2012...
define(["../../polymer/polymer-legacy.js"], function (_polymerLegacy) { "use strict"; /** @license Copyright (c) 2016 The Polymer Project Authors. All rights reserved. This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt The complete set of authors may be fou...
import React from 'react' import styled from 'styled-components' import { IdentityBadge } from '@aragon/ui' class App extends React.Component { render() { return ( <div css={` display: flex; align-items: center; justify-content: center; flex-direction: column...
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ClientInfo = void 0; const platform = require("platform"); class ClientInfo { constructor(version) { this.sdk = 'js'; this.sdkVer = version; this.os = platform.os.family; this.osVer = platform.os.ver...
const process = require('process'); const fs = require('fs'); const { execSync } = require('child_process'); const { version } = require('./package.json'); const task = process.argv.slice(2).join(' '); // eslint-disable-next-line no-console console.log(`npm-scripts.js [INFO] running task "${task}"`); switch (task) {...
/// Copyright (c) 2012 Ecma International. All rights reserved. /// Ecma International makes this code available under the terms and conditions set /// forth on http://hg.ecmascript.org/tests/test262/raw-file/tip/LICENSE (the /// "Use Terms"). Any redistribution of this code must retain the above /// copyright an...
//// [superInObjectLiterals_ES5.ts] var obj = { __proto__: { method() { } }, method() { super.method(); }, get prop() { super.method(); return 10; }, set prop(value) { super.method(); }, p1: function () { super.method(); }, ...
/* globals describe it expect */ /* eslint-disable flowtype/require-valid-file-annotation */ import * as React from 'react' import ShallowRenderer from 'react-test-renderer/shallow' import { FioAddressRegistered } from '../../components/scenes/FioAddressRegisteredScene' import { getTheme } from '../../components/serv...
// Copyright 2016, Google, Inc. // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in wr...
var React = require('react'), rlapi = require('livereactload-api') var Map = rlapi.expose(React.createClass({ componentDidMount: function() { var mapOptions = { center: {lat: 60.2058215, lng: 24.8819948}, zoom: 12, draggable: false, zoomControl: false, scrollwheel: false, ...
/** * requestAnimationFrame */ window.requestAnimationFrame = (function(){ return window.requestAnimationFrame || window.webkitRequestAnimationFrame || window.mozRequestAnimationFrame || window.oRequestAnimationFrame || window.msRequestAnimationFrame ...
/* * The MIT License (MIT) * * Copyright (c) 2018 Richard Backhouse * * 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, ...