text
stringlengths
2
1.04M
import module from '../../module' export default name => { const root = `${module.code}/${name}/` const crud = $http.crud(root) const urls = { clear: root + 'Clear' } const clear = prefix => { return $http.delete(urls.clear, { prefix }) } return { ...crud, clear } }
//----------- Imports -----------// import React from 'react' import { shallow } from 'enzyme' import ShowsRoute from '../index' //----------- Tests -----------// describe('<ShowsRoute />', () => { it('Expect to have unit tests specified', () => { expect(true).toEqual(false); }); });
(window.webpackJsonp=window.webpackJsonp||[]).push([[160],{1088:function(module,exports){module.exports=function(hljs){return{case_insensitive:!0,contains:[hljs.HASH_COMMENT_MODE,{className:"meta",variants:[{begin:"^TAP version (\\d+)$"},{begin:"^1\\.\\.(\\d+)$"}]},{begin:"(s+)?---$",end:"\\.\\.\\.$",subLanguage:"yaml"...
/** * Provides utilities for manipulating the ganache-cli process */ const request = require('superagent'); const Utils = function Utils({ networkId, node } = {}) { this.networkId = networkId || '999'; this.node = node || 'http://localhost:8545'; console.log(`Utils created for ${this.networkId} id ${this.node}...
/** * @preserve Copyright (c) 2013 British Broadcasting Corporation * (http://www.bbc.co.uk) and TAL Contributors (1) * * (1) TAL Contributors are listed in the AUTHORS file and at * https://github.com/fmtvp/TAL/AUTHORS - please extend this file, * not this notice. * * @license Licensed under the Apache...
"use strict"; exports.__esModule = true; /** * Array forEach */ function forEach(arr, callback, thisObj) { if (arr == null) { return; } var i = -1; var len = arr.length; while (++i < len) { // we iterate over sparse items since there is no way to make it // work properly on...
var searchData= [ ['b',['b',['../class_put_box.html#addcb6a5ba81ee1a9b58a4d6a431248f0',1,'PutBox::b()'],['../class_put_ellipsoid.html#adfbc6f752055ea68b0301411650206f0',1,'PutEllipsoid::b()'],['../class_put_sphere.html#a4c7c1a0757682ff69e5075e58b5892f2',1,'PutSphere::b()'],['../class_put_voxel.html#acc68157667afefff5...
/*! * OpenUI5 * (c) Copyright 2009-2020 SAP SE or an SAP affiliate company. * Licensed under the Apache License, Version 2.0 - see LICENSE.txt. */ //Provides class sap.ui.model.odata.v2.ODataListBinding sap.ui.define([ 'sap/ui/model/Context', 'sap/ui/model/FilterType', 'sap/ui/model/ListBinding', 'sap/ui/model...
var class_test_graphml_writer = [ [ "TestGraphmlWriter", "d6/d60/class_test_graphml_writer.html#afe0e67896c16ffe8128a7c41278cd2f4", null ], [ "generateMainGraph1", "d6/d60/class_test_graphml_writer.html#ac77c2bcabf279a1e160ca8c0de2acedf", null ], [ "generateMainGraph2", "d6/d60/class_test_graphml_writer.htm...
/* @licstart The following is the entire license notice for the JavaScript code in this file. Copyright (C) 1997-2019 by Dimitri van Heesch This program is free software; you can redistribute it and/or modify it under the terms of version 2 of the GNU General Public License as published by the Free Software Foundati...
Ext.define('PiClim.view.Main', { extend: 'Ext.tab.Panel', xtype: 'main', requires: [ 'Ext.TitleBar', 'Ext.field.Password', 'Ext.field.Checkbox', 'Ext.Video', 'Ext.dataview.List', 'PiClim.store.Temperatures', 'Ext.chart.CartesianChart', 'Ext.cha...
import React, { Component, Children, cloneElement } from 'react'; import PropTypes from 'prop-types'; import styles from './tree-node-renderer.scss'; class FileThemeTreeNodeRenderer extends Component { render() { const { children, listIndex, swapFrom, swapLength, swapDepth, sc...
import axios from "axios"; import jwt_decode from "jwt-decode"; import { GET_ERRORS, SET_CURRENT_USER } from "./types"; import { CURRENT_API_VERSION } from "../config/keys"; import setAuthToken from "../utils/setAuthToken"; // Register User export const registerUser = (userData, history) => dispatch => { axios ....
import logo from './logo.svg'; import './App.css'; import {BrowserRouter as Router, Switch, Route, Link} from 'react-router-dom'; import Home from './pages/Home/Home'; import About from './pages/about/About'; import Contact from './pages/Contact'; import Portfolio from './pages/Portfolio'; import Resume from './pages/...
import { STORY_ARCHIVE } from '../constants/actionTypes'; const doArchiveStory = id => ({ type: STORY_ARCHIVE, id, }); export { doArchiveStory, };
var theAnswer=Math.floor(Math.random()*101); var guesses=0; function checkNumber(){ var x1 = document.guessingGame.aNumber.value; var x=Number(x1); if (x<theAnswer){ var response="<p>higher</p>"; guesses++; } else if (x>theAnswer){ var response="<p>lower</p>"; guesses++; } else { var response="...
import { combineReducers } from 'redux' import { channels,channelHasErrored, channelIsLoading } from './channels' import visibilityFilter from './visibilityFilter' const twitchApp = combineReducers({ channels, visibilityFilter, channelHasErrored, channelIsLoading }) export default twitchApp
class Utils { // Simple sleep function for various required delays sleep(sec) { return new Promise(res => setTimeout(res, sec*1000)) } // Check if devices list from location has an alarm panel (could be only camera/lights) hasAlarm(devices) { return (devices.filter(device => device...
const express = require('express'); const controller = require('../controllers/ctr_courses'); const router = express.Router(); // Courses router.post('/course_view', controller.course_view); // Holes router.post('/hole_get_name', controller.hole_get_name); module.exports = router;
const Store = require('../../lib/index').default; const store = new Store(); const callback = state => console.log(`received state -> ${JSON.stringify(state)}`); const config = state => { return { name: state.name }; }; store.subscribe(callback, config); store.setState({ name: 'Rogerio Luiz Aques de Amorim', age...
/** * 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 Lib = require('../../lib'); var Template = require('../../plot_api/plot_template'); var axisIds = require('....
import classNames from 'classnames'; import React from 'react'; import { bsClass, bsSizes, getClassSet, prefix, splitBsProps } from './utils/bootstrapUtils'; import { Size } from './utils/StyleConfig'; const propTypes = { /** * A css class to apply to the Modal dialog DOM node. */ dialogClassName: React.P...
module.exports = { apps: [ { name: 'KOAAPI', script: 'entryApp.js', // 使用命令 pm2 start ecosystem.config.js --interpreter babel-node // Options reference: https://pm2.io/doc/en/runtime/reference/ecosystem-file/ args: 'one two', output: './logs/output.log', instances: 1, ...
$(document).ready(function() { $(".wait").hide(); $("#success-message").hide(); var defaultColor = $("input[name=name]").css('border-top-color'); $("form#contact").submit(function(e) { $("input[name=name]").css('border-color',defaultColor); $("input[name=email]").css('border-color',defaultColor); $("input...
var book = { "name": "Raudu dziesmas", "numChapters": 5, "chapters": { "1": { "1": "<sup>1</sup> Cik vientuļa ir kļuvusi šī pilsēta, kas bija ļaužu pilna! Tā, kas bija liela starp tautām, ir kļuvusi kā atraitne, un, kas bija valdniece pār novadiem, ir kļuvusi pati par verdzeni.", "2": "<sup>2</sup> Tā gauži ...
},this.release=function(){e.pause(),e.src=""}}function r(){var e=null;this.request=function(){e||(e=setInterval(function(){window.location=window.location,setTimeout(window.stop,0)},3e4))},this.release=function(){e&&(clearInterval(e),e=null)}}function n(){var e=navigator.userAgent||navigator.vendor||window.opera;return...
describe('ContextMenu', function () { var id = 'testContainer'; beforeEach(function () { this.$container = $('<div id="' + id + '"></div>').appendTo('body'); }); afterEach(function () { if (this.$container) { destroy(); this.$container.remove(); $.contextMenu('destroy'); } }); ...
import { createApp } from 'vue' import App from './App.vue' import router from './routes' import naive from 'uab-ui-plus' const app = createApp(App) app.use(router) app.use(naive) app.mount('#app')
// @module: commonjs // @filename: t1.ts export var x = "x"; export var y = "y"; // @filename: t2.ts export { x as y, y as x } from "./t1"; export { x as y, y as x };
var claps = [ './Claps/AlexanderClap.gif', './Claps/CreapyClap.gif', './Claps/DelcanClap.gif', './Claps/dogClap.gif', './Claps/HeidiClap.gif', './Claps/kidClap.gif', './Claps/PinguClap.gif', './Claps/putinClap.gif', './Claps/RihannaClap.gif', './Claps/RyanClap.gif' ]; var searchTerm_claps = [ 'cl...
function loadNecklace(id) { var rsr = Raphael(id, '959.75', '220.83008'); var scale = "s0.75,0.75,0,0"; var transf = scale + "t12,-14"; var layer1 = rsr.set(); var path3793x = rsr.path("m 195.18748,124.31167 c 0,0 64.50799,-90.249146 73.03669,-50.241786 8.52869,40.007356 44.01197,-52.28735 73.03668,...
'use strict'; var config = require('../lib/config'); var helper = require('../helper'); var redis = config.redis; describe("The 'type' method", function () { helper.allTests(function (ip, args) { describe('using ' + ip, function () { var client; beforeEach(function (done) { ...
/** * Test that rename collection only takes database IX lock and will not be blocked by transactions. * * @tags: [uses_transactions, requires_db_locking, assumes_unsharded_collection] */ (function() { "use strict"; let dbName = 'rename_collection_not_blocked_by_txn'; let mydb = db.getSiblingDB(dbName); mydb.t.d...
/** PURE_IMPORTS_START ._AsyncAction PURE_IMPORTS_END */ var __extends = (this && this.__extends) || function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; function __() { this.constructor = d; } d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype,...
'use strict'; var env = require('gitter-web-env'); var stats = env.stats; var userService = require('gitter-web-users'); var persistence = require('gitter-web-persistence'); var userDefaultFlagsService = require('./user-default-flags-service'); var Troupe = persistence.Troupe; var assert = require('assert'); var mongo...
//# sourceMappingURL=25.5bb6c60c.chunk.js.map
import { ExecutionError } from '../../util/errors.js' function charAtFn(env, index, string) { if (index[0] !== 'number') throw ExecutionError('char_at() must take a number as its first argument.') if (string[0] !== 'string') throw ExecutionError('char_at() must take a string as its second argument.') co...
/** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @flow */ export type WorkTag = | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 ...
//# sourceMappingURL=app.ae833c47.js.map
const { Builder, By, Capabilities, until } = require("selenium-webdriver"); const AUTH_TOKEN = "EXTRACT_THIS_FROM_YOUR_BROWSER_COOKIE_ONCE_YOU_LOGGED_IN"; const FOLLOW_BTN_XPATH = "/html/body/div/div/div/div[2]/main/div/div/div/div/div/div[2]/div/div/div[1]/div/div[1]/div/div[2]/div/div"; // const caps = new Capab...
import React, { PureComponent } from 'react'; // components import LayoutManagerDataDetail from 'layout/manager/data-detail'; class ManagerDataDetailPage extends PureComponent { render() { return <LayoutManagerDataDetail />; } } export default ManagerDataDetailPage;
import styled from "styled-components"; import { StyledCard } from "../NormalCard/styled"; import { SuccessAnimation } from "components/Global/transitions.styled"; const SuccessText = styled.p` position: relative; top: 40px; color: white; font-size: ${({ theme }) => theme.LARGE}; font-weight: bold; `; const S...
import Ember from 'ember'; import layout from '../templates/components/ui-draggable'; import JqueryUIMethods from '../mixins/jqueryui-methods'; const { on } = Ember; export default Ember.Component.extend(JqueryUIMethods, { attributeBindings: ['data-value'], 'data-value': null, layout: layout, initializeDro...
module.exports = { name: 'angular-app', preset: '../../jest.config.js', coverageDirectory: '../../coverage/apps/angular-app/', snapshotSerializers: [ 'jest-preset-angular/AngularSnapshotSerializer.js', 'jest-preset-angular/HTMLCommentSerializer.js' ] };
var common = require('../../common'); var connection = common.createConnection(); var assert = require('assert'); var rows = undefined; var fields = undefined; connection.query([ 'CREATE TEMPORARY TABLE `test_table` (', '`id` int(11) unsigned NOT NULL AUTO_INCREMENT,', '`num` int(15),', '`l` long,', ...
"use strict"; /** * @license * Copyright 2017 Palantir Technologies, 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 * * Unle...
import React from 'react'; import { Link } from 'react-router-dom'; import styled from 'styled-components'; const ButtonStyle = styled.div` margin-top: 2rem; .button { font-size: 2.2rem; background-color: ${(props) => props.outline ? 'transperant' : 'var(--white)'}; padding: 0.7em 2em; border...
'use strict'; /** * Documentation of convert() parameters * - model: zigbee-herdsman-converters definition (form devices.js) * - msg: message data property * - publish: publish method * - options: converter options object, e.g. {occupancy_timeout: 120} * - meta: object containing {device: (zigbee-herdsman device...
{ "": { "domain": "ckan", "lang": "sr", "plural-forms": "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);" }, "Cancel": [ null, "Откажи" ], "Edit": [ null, "Уређивање" ], "Image": [ null, "Слика" ], "Loading...":...
(function( $ ) { var position_image_overlay = function( $image, $overlay ) { var image_pos = $image.position(); var image_margin_left = $image.css('margin-left'); var image_margin_right = $image.css('margin-right'); $overlay.css({ 'position' : 'absolute', 'opacity' : '0.4', 'top' : imag...
!function(t){var e={};function n(i){if(e[i])return e[i].exports;var o=e[i]={i:i,l:!1,exports:{}};return t[i].call(o.exports,o,o.exports,n),o.l=!0,o.exports}n.m=t,n.c=e,n.d=function(t,e,i){n.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:i})},n.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.d...
import snapshotDiff from 'snapshot-diff' import axios from 'axios' import { advanceTo, clear } from 'jest-date-mock' // Check for more: https://github.com/kentor/flush-promises // or if you don't want to add external lib: https://github.com/kentor/flush-promises/blob/master/index.js import flushPromises from 'flush-pro...
'use strict'; angular.module('myApp.AddMusicians', ['ngRoute']) .config(['$routeProvider', function($routeProvider) { $routeProvider.when('/musicians/add', { templateUrl: 'musicians/add/add.html', controller: 'AddMusicians' }); }]) .controller('AddMusicians', ['$scope', 'Musicians', '$location', function...
/** * * InvitationForm * */ import React, { useState } from 'react'; import PropTypes from 'prop-types'; import { connect } from 'react-redux'; import { createStructuredSelector } from 'reselect'; import { compose } from 'redux'; import { useInjectSaga } from 'utils/injectSaga'; import { useInjectReducer } from 'u...
import React, { useState, useEffect } from 'react'; import './Welcome.css'; export default function Welcome() { const [welcomeBox, setWelsomeBox] = useState(null); useEffect( () => { // Get all the buttons and save their state var welcomePop = document.getElementById("welcome"); setW...
// @flow import * as _ from 'lodash'; import { DefaultLinkModel } from '@projectstorm/react-diagrams'; import { DiagramEngine } from '@projectstorm/react-diagrams'; import { LinkModel } from '@projectstorm/react-diagrams'; import { PortModel } from '@projectstorm/react-diagrams'; export class DynamicNodePortModel exte...
if(!dojo._hasResource["dojox.rails.tests.plugd.trigger"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code. dojo._hasResource["dojox.rails.tests.plugd.trigger"] = true; dojo.provide("dojox.rails.tests.plugd.trigger"); (function(d){ var isfn = d.isFunction, leaveRe = /mouse(enter...
Baabaaboey
/* * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for * license information. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is * regenerated. */ ...
// action types const SELECT_CARD = 'SELECT_CARD' // action creators export const selectCard = card => { return { type: SELECT_CARD, card } } // reducer export default function(state = {}, action) { switch (action.type) { case SELECT_CARD: return action.card default: return state ...
var SpriteAnimation = require('SpriteAnimation'); cc.Class({ extends: cc.Component, properties: { dustPrefab: cc.Prefab, _myDust: { default: null, serializable: false } }, onEnable () { this._myDust = cc.instantiate(this.dustPrefab); th...
var localVideo; var localStream; var remoteVideo; var remoteStream; var peerConnection; var uuid; var serverConnection; var movement_result; var peerConnectionConfig = { 'iceServers': [ { 'urls': 'stun:stun.stunprotocol.org:3478' }, { 'urls': 'stun:stun.l.google.com:19302' }, { 'urls': 'stun:relay.backup...
var searchData= [ ['debug_5fprint_276',['debug_print',['../structsyn6288__handle__s.html#a75f9f50c23e87e9407f9ec4e34bb42f2',1,'syn6288_handle_s']]], ['delay_5fms_277',['delay_ms',['../structsyn6288__handle__s.html#a406c9433252b7366de417b7a60915c81',1,'syn6288_handle_s']]], ['driver_5fversion_278',['driver_version...
import Fonts from './Fonts' import Metrics from './Metrics' import Colors from './Colors' import { size } from '../Util/Helper' const ApplicationStyles = { screen: { container: { flex: 1, }, mainContainer: { flex: 1, padding: size(33) }, s...
'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); exports.Bar = undefined; var _classCallCheck2 = require('babel-runtime/helpers/classCallCheck'); var _classCallCheck3 = _interopRequireDefault(_classCallCheck2); var _createClass2 = require('babel-runtime/helpers/createClass'); var _cre...
export const ic_system_update_alt_twotone = {"viewBox":"0 0 24 24","children":[{"name":"path","attribs":{"d":"M0 0h24v24H0V0zm0 0h24v24H0V0z","fill":"none"},"children":[]},{"name":"path","attribs":{"d":"M12 16l4-4h-3V3h-2v9H8l4 4zm9-13h-6v1.99h6v14.03H3V4.99h6V3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-...
/** * Kendo UI v2017.2.802 (http://www.telerik.com/kendo-ui) * Copyright 2017 Telerik AD. All rights reserved. ...
// @flow import * as React from 'react' import Error from '.' import {action, storiesOf} from '../../../stories/storybook' import {convertToRPCError} from '../../../util/errors' import {constantsStatusCode} from '../../../constants/types/rpc-gen' const props = { error: convertToRPCError({ code: 901, desc: ...
function checkInput(textbox) { var Precio = document.getElementByName('precioCompra').value; var iva = document.getElementById('iva').value; var gano = document.getElementById('ganancia').value ; var pre = document.getElementById("garca").value = Precio * iva /100 ; var rent...
import React from "react"; import ReactDOM from "react-dom"; import thunkMiddleware from 'redux-thunk' import {createLogger} from 'redux-logger' import {applyMiddleware, createStore} from 'redux' import userReducer from './reducers/userReducer' import {sign_up,sign_in,sign_out} from "./actions/userActions"; import Root...
import * as fromCategories from '../reducer'; import * as selectors from '../selectors'; import { mockCategories, mockCategory, mockCategoryId, mockChildrenCategories, mockLoadingState, mockState, mockTopCategories, mockUnfetchedState, } from 'tests/__fixtures__/categories'; describe('categories redux ...
var defaults = require('./'), test = require('tap').test; test("ensure options is an object", function(t) { var options = defaults(false, { a : true }); t.ok(options.a); t.end() }); test("ensure defaults override keys", function(t) { var result = defaults({}, { a: false, b: true }); t.ok(result.b, 'b me...
// @flow weak import { commitMutation, graphql } from 'react-relay' import { ConnectionHandler } from 'relay-runtime' const mutation = graphql` mutation TranslaticiarumDeleteMutation($input: TranslaticiarumDeleteInput!) { TranslaticiarumDelete(input: $input) { deletedId } } ` function sharedUpdater...
const debug = require('debug')('rascal:tasks:deleteExchanges'); const _ = require('lodash'); const async = require('async'); module.exports = _.curry((config, ctx, next) => { async.eachSeries( _.keys(config.exchanges), (name, callback) => { deleteExchange(ctx.channel, config.exchanges[name], callback);...
'use strict'; describe('Controller: BadgedialogCtrl', function() { // load the controller's module beforeEach(module('iLayers')); var controller, scope, graph, deferredSuccess, registryService; // Initialize the controller and a mock scope beforeEach(inject(function($controller, $rootScop...
#! /usr/bin/env node const program = require('commander') const Init = require('../action/init') const I18 = require('../lib/i18'); const Flow = require('../action/flow'); const ConfigSet = require('../action/config_set') const ConfigGet = require('../action/config_get') const i18 = new I18(); program .version(requi...
import PagesController from './pages-controller' export default { PagesController, }
export { default as Schedule } from './Schedule'; export { default as Schedules } from './Schedules'; export { default as ScheduleList } from './ScheduleList'; export { default as ScheduleOccurrences } from './ScheduleOccurrences'; export { default as ScheduleToggle } from './ScheduleToggle'; export { default as Schedu...
var gulp = require('gulp'); var watch = require('node-watch'); var combiner = require('stream-combiner2'); var os = require('os'); let cleanCSS = require('gulp-clean-css'); var execSync = require('child_process').execSync; let fs = require('fs'); function taskError(e) { console.error(e); } function sect...
import PluggableMap from 'ol/PluggableMap' import Vue from 'vue' export function getMapId (map) { if (map instanceof Vue) { return map.id } else if (map instanceof PluggableMap) { return map.get('id') } throw new Error('Illegal map argument') } export function setMapId (map, mapId) { if (map instan...
/* * typeahead.js * https://github.com/twitter/typeahead * Copyright 2013 Twitter, Inc. and other contributors; Licensed MIT */ (function($) {
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([[410],{tvlV:function(c,e,t){"use strict";t.r(e);var a=t("q1tI"),n={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M832 64H192c-17.7 0-32 14.3-32 32v832c0 17.7 14.3 32 32 32h640c17.7 0 32-14.3 32-32V96c0-17.7-14....
import React from 'react'; const IconGithub = () => ( <svg xmlns="http://www.w3.org/2000/svg" role="img" viewBox="0 0 438.549 438.549"> <title>Github</title> <path d="M409.132,114.573c-19.608-33.596-46.205-60.194-79.798-79.8C295.736,15.166,259.057,5.365,219.271,5.365 c-39.781,0-76.472,9.804-110.06...
/*! * ${copyright} */ // Provides control sap.f.IllustratedMessage. sap.ui.define([ "sap/m/IllustratedMessage", "sap/m/IllustratedMessageRenderer", "./library" ], function( sapMIllustratedMessage, IllustratedMessageRenderer /*, library */ ) { "use strict"; /** * Constructor for a new <code>IllustratedMess...
self["webpackHotUpdate_N_E"]("pages/index",{ /***/ "./src/components/Acomplishments/AcomplishmentsStyles.js": /*!***************************************************************!*\ !*** ./src/components/Acomplishments/AcomplishmentsStyles.js ***! \***************************************************************/ /**...
/** * @license Copyright (c) 2003-2022, CKSource - Frederico Knabben. All rights reserved. * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license */ /** * @module engine/view/domconverter */ /* globals document, Node, NodeFilter, DOMParser, Text */ import ViewText from './text'; impo...
import { SET_EMAIL_UNREAD, DELETE_EMAIL, ADD_EMAIL, } from './actions'; export const emails = (state = [], action) => { let nextState = state; if (action.type === UPDATE_EMAILS) { nextState = action.payload; } if (action.type === DELETE_EMAIL) { nextState = nextState.filte...
export default { lang: 'en-km', mediaPlayer: { oldBrowserVideo: 'To view this video please enable JavaScript and/or consider upgrading to a browser that supports HTML5 video.', oldBrowserAudio: 'To listen to this audio please enable JavaScript and/or consider upgrading to a browser that supports HTML5 audio...
import createExtremum from '../internal/createExtremum'; import lt from '../lang/lt'; /** Used as references for `-Infinity` and `Infinity`. */ var POSITIVE_INFINITY = Number.POSITIVE_INFINITY; /** * Gets the minimum value of `collection`. If `collection` is empty or falsey * `Infinity` is returned. If an iteratee ...
import config from '../../../support/config/services'; import appConfig from '../../../../src/app/lib/config/services'; const tests = ({ service }) => describe('Common tests', () => { describe('Live Radio body', () => { it('should render a H1, which contains/displays a styled headline', () => { cy....
import supertest from "supertest" import "dotenv/config" class UserHelper { constructor() { this.response = null } async register(firstName, lastName, countryName, phone, email, password) { await supertest(process.env.BASE_URL) .post("user") .send({ firstName, lastName, countryName, phone, em...
class FileUpLoader { constructor(baseUrl, config) { this.config = Object.assign({ 'chunkSize': 4 * 1024 * 1024, 'generateFileName': false }, config); this.baseUrl = baseUrl; this.checkFileProgress = null; this.uploadFileProgress = null; this.up...
import 'whatwg-fetch' const copy = require('clipboard-copy'); function wordURL(word, permalink, relative) { const base = relative ? "" : "https://www.thisworddoesnotexist.com"; return `${base}/w/${encodeURIComponent(word)}` + (permalink ? `/${permalink}` : ""); } function syncLinkURLs(url, word) { let tweetEl ...
module.exports = { preset: 'ts-jest', transform: { '^.+\\.tsx?$': 'ts-jest', }, testRegex: '/__tests__/.*\\.test.(ts|tsx)$', moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node'], setupFiles: ['jest-canvas-mock'], collectCoverage: true, collectCoverageFrom: ['src/**/*.{ts,tsx}'], testEn...
"use strict"; // https://github.com/sebmarkbage/ecmascript-rest-spread var t = require("../../../types"); exports.experimental = true; exports.manipulateOptions = function (opts) { if (opts.whitelist.length) opts.whitelist.push("es6.destructuring"); }; var hasSpread = function (node) { for (var i = 0; i < node...
/* * jQuery File Upload User Interface Plugin * https://github.com/blueimp/jQuery-File-Upload * * Copyright 2010, Sebastian Tschan * https://blueimp.net * * Licensed under the MIT license: * https://opensource.org/licenses/MIT */ /* global define, require */ (function (factory) { 'use strict'; if (ty...
// Use this file to change prototype configuration. // Note: prototype config can be overridden using environment variables (eg on heroku) module.exports = { // Service name used in header. Eg: 'Renew your passport' serviceName: 'Service name goes here', // Default port that prototype runs on port: '3000', ...
import * as React from 'react'; import PropTypes from 'prop-types'; import { StyleSheet } from 'react-native'; import NavigationItem from './AppbarNavigationItem'; import ActionItem from './AppbarActionItem'; import Title from './AppbarTitle'; import Surface from '../Common/Surface'; import { withTheme } from '../../Li...
/* eslint-disable no-unused-vars */ const logger = require('winston'); const jsend = require('jsend'); class Service { constructor(options) { this.options = options || {}; } async find(params) { console.log(params.query); const familyCoverService = this.app.service('families'); const _families = ...
module.exports={A:{A:{"2":"O F H E A B lB"},B:{"2":"C N D I J K L KB P","257":"M R S YB U"},C:{"1":"0 1 2 3 4 5 6 7 8 9 g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB PB GB HB IB JB X LB MB NB FB W V VB QB RB SB TB UB KB P M OB R S","2":"eB bB G Y O F H E A B C N D I J K L Z a b c d e f kB sB"},D:{"2":"0 1 2 3 ...