text
stringlengths
2
1.04M
import DisjointSetItem from './DisjointSetItem'; export default class DisjointSet { constructor(keyExtraction) { this.items = {}; this.keyExtraction = keyExtraction; } makeSet(value) { const newItem = new DisjointSetItem(value, this.keyExtraction); this.items[newItem.getKey()] = newItem; ret...
import { isMirroring } from '@jsxcad/math-mat4'; import { map } from './map'; import { transform as transformVec3 } from '@jsxcad/math-vec3'; // Affine transformation of polygon. Returns a new polygon. export const transform = (matrix, polygons) => { const transformed = map(polygons, vertex => transformVec3(matrix, ...
import {spawnSync} from 'child_process' export default () => spawnSync('git', ['rev-list', 'head']) .stdout .toString() .split('\n') .filter(str => str !== '')
const fs = require('fs-extra'); const { processFile } = require('./profiling'); const analyze = async () => { const result = await processFile(process.env.INPUT_FILE); fs.writeFileSync(process.env.OUTPUT_FILE, JSON.stringify({ 'languages': result })); return true; }; analyze().then(() => console.log("suc...
// All material copyright ESRI, All Rights Reserved, unless otherwise specified. // See https://js.arcgis.com/4.11/esri/copyright.txt for details. //>>built define(["require","exports","../../core/kebabDictionary","../../core/lang"],function(u,d,f,g){function n(b){return null!=b&&b.hasOwnProperty("mapLayerId")}function...
var searchData= [ ['empty',['empty',['../group__group-MonadPlus.html#gaa6be1e83ad72b9d69b43b4bada0f3a75',1,'boost::hana']]], ['equal',['equal',['../group__group-Comparable.html#gacaf1ebea6b3ab96ac9dcb82f0e64e547',1,'boost::hana']]], ['erase_5fkey',['erase_key',['../structboost_1_1hana_1_1map.html#af856f7bf77f69cd...
module.exports = { root: true, env: { node: true, }, extends: [ 'plugin:vue/vue3-essential', 'eslint:recommended', '@vue/prettier', 'plugin:prettier/recommended', ], parserOptions: { parser: 'babel-eslint', }, rules: { 'no-console': process.env.NODE_ENV === 'production' ? 'wa...
define('dinosheets', ['exports', 'module', 'dinosheets/shim', 'dinosheets/utils'], function (exports, module, _dinosheetsShim, _dinosheetsUtils) { 'use strict'; function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } function _classCallCheck(instance, Constructor) { if ...
import React, { useEffect } from "react"; import { t } from "../../modules/i18n"; import CfMarkdown from "cfmarkdown"; const mdparser = CfMarkdown({ quotes: "„“‚‘", headerStartIndex: 3, }); export default function LivePreview({ content }) { useEffect(() => { if (window.MathJax && window.MathJax.Hub) { ...
/* eslint-env browser */ 'use strict'; require('./driver').set(require('./drivers/browser')); const DocumentProvider = require('./document_provider.js'); const PromiseProvider = require('./promise_provider'); DocumentProvider.setBrowser(true); /** * The Mongoose [Promise](#promise_Promise) constructor. * * @met...
const fs = require('fs'); let data = require('./livsmedelsdata.json'); // There is only important data in this path data = data.LivsmedelDataset.LivsmedelsLista.Livsmedel; // Check how many items we have console.log("Number of items:", data.length); // Have a look at an item to understand its structure console....
module.exports = (functions, admin, Users, moment )=>{ return functions.https.onRequest((req, res) => { if(req.method === 'POST'){ console.log('req.body',req.body); console.log('uid', req.headers['uid']); Users.child(req.headers['uid']).child('dates/'+moment().format('MMM...
var codeMirrorData ; var codeMirrorQuery ; function changeMode(element,syntax) { var mode = "turtle"; switch (syntax.toUpperCase()) { case "TURTLE": mode = "turtle" ; break ; case "N-TRIPLES": mode = "turtle" ; break ; case "RDF/XML": mode = "xml" ; b...
import _mergeJSXProps from "babel-helper-vue-jsx-merge-props"; export default { name: 'WarningIcon', props: {}, functional: true, render: function render(h, ctx) { var attrs = ctx.data.attrs || {}; ctx.data.attrs = attrs; return h("svg", _mergeJSXProps([{ attrs: { xmlns: "http://www.w3...
/** * AUTO-GENERATED - DO NOT EDIT. Source: https://github.com/gpuweb/cts **/ export const description = ` render pass validation tests. `; import { TestGroup } from '../../../framework/index.js'; import { ValidationTest } from './validation_test.js'; class F extends ValidationTest { getUniformBuffer() { return...
'use strict'; module.exports = { plugins: [ require('autoprefixer'), require('postcss-url')({inline: 'encodeURIComponent', url: 'inline'}), ], };
const fs = require('fs'); const path = require('path'); function getDirectories (srcpath) { return fs.readdirSync(srcpath) .filter(file => fs.statSync(path.join(srcpath, file)).isDirectory()); } module.exports = (output, user, data, newCall) => { if(!data.user) { data.user = user; } var...
const HttpStatus = require('http-status-codes') const User = require('../models/user.model') module.exports = { async createUser (req, res) { try { const user = new User(req.body) const saveUser = await user.save() res.status(HttpStatus.CREATED).send({ User: saveUser.toJSON() } )...
// @ts-check /** * @type {import('@jest/types').Config.InitialOptions} **/ module.exports = { testEnvironment: 'jsdom', collectCoverageFrom: ['**/*.{js,jsx,ts,tsx}', '!**/*.d.ts', '!**/node_modules/**'], moduleNameMapper: { // Handle CSS imports (with CSS modules): https://jestjs.io/docs/webpack#mocking-cs...
var request = require('request') var d3 = require('d3') var queue = require('queue-async') var fs = require('fs') var q = queue(5) d3.range(1951, 2016).forEach(function(year){ q.defer(function(cb){ var url = 'http://www.basketball-reference.com/leagues/NBA_' + year + '_games.html' request(url, function(error, ...
var searchData= [ ['rtc',['RTC',['../_lewe_firmware_8ino.html#a32a993088eeee84c83f497d53c92712b',1,'LeweFirmware.ino']]] ];
import Vue from 'vue' import Router from 'vue-router' // in development-env not use lazy-loading, because lazy-loading too many pages will cause webpack hot update too slow. so only in production use lazy-loading; // detail: https://panjiachen.github.io/vue-element-admin-site/#/lazy-loading Vue.use(Router) /* Layout...
const Resource = require('./Resource'); class DomainResource extends Resource { constructor ( opt ) { super( opt ); this.__resourceType = 'DomainResource'; Object.assign(this, opt); } // This is a DomainResource resource static get __resourceType () { return 'DomainResource'; } // Type of this resourc...
import React from 'react' import PropTypes from 'prop-types' import { Link } from 'react-router-dom' import urlContext from 'Functions/urlContext' import { withRouter } from 'react-router' import queryString from 'query-string' export const CardLink = ({ url, displayClass, match, location, children }) => { const sea...
import { expect } from 'chai'; import React from 'react'; import { renderToString } from 'react-dom/server'; import Button from '../src/Button'; describe('Button', () => { it('create button component with text', () => { const string = renderToString(<Button>Hello</Button>); expect(string).to.match(/Hello/); ...
function yesShutdown() { if(process.scl != undefined && !process.scl.noShutdown) return; if(process.scl == undefined) process.scl = {}; process.scl.noShutdown = false; process.on("SIGINT", ()=>process.exit()); process.on("SIGTERM", ()=>process.exit()); } module.exports = yesShutdo...
import { interpolate } from "../../utils/interpolate"; import { easeInOut } from "../../easing"; export function defaultEasing(values, easing) { return values.map(() => easing || easeInOut).splice(0, values.length - 1); } export function defaultOffset(values) { const numValues = values.length; return values...
require("dotenv").config(); const nodemailer = require("nodemailer"); const express = require("express"); const path = require("path"); const cors = require("cors"); const app = express(); // add middlewares for prod only console.log("[Environment] ", process.env.ENVIRONMENT); if (process.env.ENVIRONMENT === "PRODUCTI...
/* istanbul instrument in package npmtest_fs_readdir_recursive */ /*jslint bitwise: true, browser: true, maxerr: 8, maxlen: 96, node: true, nomen: true, regexp: true, stupid: true */ (function () { 'use strict'; var local; // run shared js-env code - pre-init (function...
/* Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.md or http://ckeditor.com/license */ CKEDITOR.plugins.setLang( 'sourcedialog', 'fi', { toolbar: 'Koodi', title: 'Koodi' } );
import { CATEGORY_DELIMITER } from '../../../constants/categories'; describe( 'javascript', () => { test( 'can tokenize delimiters.', () => { [ ';', '.', ',', ].forEach( operator => { expect( operator ).toBeTokenized( 'javascript', [ [ CATEGORY_DELIMITER, operator ] ] ); } ); }...
import React from 'react'; import { useGoogleLogin } from 'react-use-googlelogin'; const GoogleAuthContext = React.createContext({}); export const AuthProvider = ({ children }) => { const { REACT_APP_GOOGLE_CLIENT_ID } = process.env; const googleAuth = useGoogleLogin({ clientId: REACT_APP_GOOGLE_CLIENT_ID || ...
import { Box } from "@mui/system"; import { ReactComponent as Github } from "../../assets/images/Github.svg"; import { ReactComponent as Twitter } from "../../assets/images/Twitter.svg"; import { ReactComponent as Email } from "../../assets/images/Email.svg"; import TextField from "@mui/material/TextField"; // import...
YUI.add('editor-bidi', function(Y) { /** * Plugin for Editor to support BiDirectional (bidi) text operations. * @class Plugin.EditorBidi * @extends Base * @constructor * @module editor * @submodule editor-bidi */ var EditorBidi = function() { EditorBidi.superclass....
import React from 'react' import PropTypes from 'prop-types' import FetchPonyfill from 'fetch-ponyfill' const fetch = FetchPonyfill().fetch const FEED_URL = 'https://api.coinmarketcap.com/v1/ticker/payshares/' const UPDATE_INTERVAL = 5 * 60 * 1000 class StakksRatesContainer extends React.PureComponent { componentDi...
import React from 'react'; import FlightsSearchForm from "./flight-search-form"; export default { title: 'Search form/Flight Search', component:FlightsSearchForm }; export const DefaultFlightsSearchForm = () => (<FlightsSearchForm />);
initSidebarItems({"struct":[["R","Register `tx_iq_gain_hw1` reader"],["TX_IQ_GAIN_COMP_GC1_R","Field `tx_iq_gain_comp_gc1` reader - "],["TX_IQ_GAIN_COMP_GC1_W","Field `tx_iq_gain_comp_gc1` writer - "],["TX_IQ_GAIN_HW1_SPEC","tx_iq_gain_hw1."],["TX_IQ_PHASE_COMP_GC1_R","Field `tx_iq_phase_comp_gc1` reader - "],["TX_IQ_P...
// Copyright (C) 2016 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-dataview.prototype.setfloat64 es6id: 24.2.4.14 description: > ToIndex conversions on byteOffset info: | 24.2.4.14 DataView.prototype.setFloat64 ( byteOffset, val...
import { gammaln } from "./special"; import { pdf as studenttPdf, cdf as studenttCdf } from './studentt'; import { cdf as normalCdf } from './normal'; import { cdf as betaCdf } from './beta'; export function pdf(x, dof, ncp) { var tol = 1e-14; if (Math.abs(ncp) < tol) // ncp approx 0; use student-t return stu...
// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. /** * The minimum about of time to display the butter bar for, in ms. * Justification is 1000ms for minimum display time plus 300ms for transition ...
let data = { "body": "<path d=\"M12 3l10 9h-3v8H5v-8H2l10-9M9.22 8.93c-.47.47-.72 1.1-.72 1.82c0 1.68 2.04 2.32 3.26 2.71c1.5.47 1.71.75 1.74.79c0 .75-1.35.75-1.5.75c-.63 0-.97-.12-1.14-.22c-.19-.11-.36-.28-.36-.78h-2c0 1.43.74 2.16 1.35 2.5c.33.2.72.34 1.15.42V18h2v-1.09c1.53-.3 2.5-1.29 2.5-2.66c0-1.58-1.62-2.22-3.1...
/*! jQuery UI - v1.11.0 - 2014-06-27 * http://jqueryui.com * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */ (function(e){"function"==typeof define&&define.amd?define(["../datepicker"],e):e(jQuery.datepicker)})(function(e){return e.regional.tj={closeText:"Идома",prevText:"&#x3c;Қафо",nextText:"...
import React, { Component, createElement } from 'react' import PropTypes from 'prop-types' import ResizeObserver from 'resize-observer-polyfill' import resolveProps from './resolve-props' function matchQueries(queries, { width, height }) { const matchedQueries = {} Object.keys(queries).forEach(key => { const ...
/* Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license */ CKEDITOR.plugins.setLang("specialchar","fr",{euro:"Symbole euro",lsquo:"Guillemet simple ouvrant",rsquo:"Guillemet simple fermant",ldquo:"Guillemet double...
import React from 'react'; import './password.component.sass'; import { InputText } from "primereact/inputtext"; import { Button } from 'primereact/button'; import { withRouter } from 'react-router-dom'; import { connect } from 'react-redux'; import { loginUser, setServices } from '../../redux/actions/index'; import { ...
import React, { Component, PropTypes } from "react"; import Slides from "./slides"; import moment from "moment"; class Slideshow extends Component { render( ) { let dateRange = ""; if ( !this.props.project ) { return ( <h1 className="noresults"> No Project Selected </h1> ...
const utils = { isUndefined: null, }; utils.isUndefined = value => { return typeof value === 'undefined'; }; export default utils;
export class Quiver { arrows = {}; nodes = {}; current; root = null; visited = {}; setNodes(nodes) { this.nodes = Object.freeze(nodes); } path(nodes) { const Nodes = {}; let prev = null; const qvr = new Quiver(); nodes.forEach((n, index, array) => { Nodes[n] = { key: ...
var PostalCodeSearch,slice=[].slice;PostalCodeSearch=function(){function t(t,r){var e;null==r&&(r={}),this.el=$(t),this.options=$.extend({},this.defaults,r),this.el.on("click",(e=this,function(){return e.search()}))}return t.prototype.defaults={postal_code:"input[name='item[postal_code]']",addr:"input[name='item[addr]'...
import { defineMessages } from 'react-intl'; export default defineMessages({ profile: { id: 'sidebar.profile', defaultMessage: 'Profile', }, signup: { id: 'sidebar.signup', defaultMessage: 'Sign up', }, todos: { id: 'sidebar.todos', defaultMessage: 'Todos', }, logout: { id: 's...
import DashBoard from "../pages/Dashboard.vue"; import Profile from "../pages/Profile.vue"; import Login from "../pages/Login.vue"; import ViewSoftwareTeam from "../pages/ViewSoftwareTeam.vue"; import ViewSlider from "../pages/ViewSlider.vue"; const routes = [ { path: "/admin/dashboard", component: ...
Array.prototype.filter = function filter(callback) { if (this === undefined || this === null) { throw new TypeError(this + ' is not an object'); } if (!(callback instanceof Function)) { throw new TypeError(callback + ' is not a function'); } var object = Object(this), scope = arguments[1], arraylike = obj...
module.exports = require('fs');
/** * Copyright (c) Quid, Inc. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ // @flow import * as React from 'react'; import { NavLink as RouterNavLink } from 'react-router-dom'; import styled from '@emotion/styled/macro'; import cs...
iopctrl = function () { var iopctrl = { version: "0.0.2" }; function iopctrl_local_coordinate(element, x, y) { var svgRoot = element.ownerSVGElement; var p = svgRoot.createSVGPoint(); //adjust for scroll offset on mobile devices if (navigator.userAgent.match(/(iPod|i...
import { gql } from '@apollo/client'; const DETAIL_CHARACTER = gql` query getCharacter($id: ID) { person(id: $id) { name eyeColor skinColor hairColor birthYear vehicleConnection { vehicles { id name } } } } `; export default DET...
macDetailCallback("00905d000000/24",[{"d":"2000-09-08","t":"add","a":"BOPPSTRASSE 38\n55118 MAINZ\n\n","c":"GERMANY","o":"NETCOM SICHERHEITSTECHNIK GMBH"},{"d":"2002-06-05","t":"change","a":"BOPPSTRASSE 38\n55118 MAINZ\n\n","c":"GERMANY","o":"NETCOM SICHERHEITSTECHNIK GmbH"},{"d":"2015-08-27","t":"change","a":"BOPPSTRA...
/** * @file 数组去重 * * @author Marx */ /** * 数组去重 * * @param {Array} ele 要去重的数组 * @return {Array} 去重后的数组 */ function getNoRepeatArr(ele) { var newArr = []; for (var i = 0, len = ele.length; i < len; i++) { var notRepeat = true; for (var j = 0; j < i; j++) { if (ele[j] === ele...
/* * Copyright (C) 2020 con terra GmbH (info@conterra.de) * * 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 b...
/** * @fileoverview added by tsickle * @suppress {checkTypes,extraRequire,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc */ import { addFormatToken } from '../format/format'; import { getFullYear } from '../utils/date-getters'; import { addRegexToken, match1to2, match1to4, match1to6, match2, match4, ...
/** * Hydrogen Nucleus API * The Hydrogen Nucleus API * * OpenAPI spec version: 1.9.5 * Contact: info@hydrogenplatform.com * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * * Swagger Codegen version: 2.2.3 * * Do not edit the...
/* YUI 3.18.1 (build f7e7bcb) Copyright 2014 Yahoo! Inc. All rights reserved. Licensed under the BSD License. http://yuilibrary.com/license/ */ YUI.add('dump', function (Y, NAME) { /** * Returns a simple string representation of the object or array. * Other types of objects will be returned unprocessed. Arrays * ...
/* eslint-env node */ 'use strict'; module.exports = { name: 'torii', included: function(app) { var hostApp = this._findApp(app); var toriiConfig = hostApp.project.config(app.env)['torii']; if (!toriiConfig && hostApp === app) { console.warn('Torii is installed but not configured in config/enviro...
/** * @license Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. * For licensing, see LICENSE.md or http://ckeditor.com/license */ /** * @fileOverview The "colorbutton" plugin that makes it possible to assign * text and background colors to editor contents. * */ CKEDITOR...
/* Copyright (c) 2014-2017 Richard Rodger and other contributors, MIT License */ var PORT = process.env.PORT || 9000 var Seneca = require('seneca') var init_hapi = require('../web.js') var browser = require('../node_modules/seneca-browser/browser.js') Seneca({tag: 'web', legacy: {transport: false}}) .test('print'...
var fs = require('fs-extra'); var path = require('path'); const { version } = require('../package'); var exec = require('child_process').exec; var cwd = process.cwd(); var file = path.join(cwd, 'dist', 'rakam-' + version + '.js'); var minfile = path.join(cwd, 'dist', 'rakam-' + version + '-min.js'); var mingzfile = p...
const format = require('../common/format'); /** * CPU instruction information. */ class Instruction { /** * CPU instruction instance. * @param {number} opcode Operation code. * @param {string} mnemonic Assemble command. * @param {string} description Some description about instruction and opera...
export default { updateUserId(state, { userId }) { state.userId = userId; }, updateUserInfo(state, { userInfo }) { state.userInfo = userInfo; } };
'use strict'; const ReadPreference = require('../read_preference'); const { Aspect, defineAspects, OperationBase } = require('./operation'); const { executeCommand } = require('./db_ops'); const { MongoError } = require('../error'); class CreateIndexesOperation extends OperationBase { constructor(collection, indexS...
var RevisionModel = require( './model' ); module.exports = Backbone.Collection.extend( { model: RevisionModel, comparator: function( model ) { return -model.get( 'timestamp' ); }, } );
/** * Created by Vitaliy on 24.03.2016. */ var LoginPage = (function(){ return{ init: function(){ var header = $('.box-header-menu'), scrollY; function correctionPage(){ var heightW = $('.wrap').height(), heightH = $('...
module.exports = { extends: 'airbnb', plugins: ['react'], env: { browser: true, node: true, es6: true, }, globals: { React: true, }, rules: { 'react/jsx-filename-extension': [1, { extensions: ['.js', '.jsx'] }], semi: ['error', 'never'], "jsx-a11y/href-no-hash": "off", "jsx...
import styled from 'styled-components'; export const Container = styled.svg` animation: rotate 2s linear infinite; margin: 2.5px; width: ${props => props.size}px; height: ${props => props.size}px; & .path { stroke: ${props => props.color}; stroke-linecap: round; animation: dash 1.5s ease-in-out ...
import React from 'react'; export const Foxpro = props => ( );
"use strict"; const path = require("path"); const Generator = require("yeoman-generator"); const chalk = require("chalk"); const mkdir = require("mkdirp"); const yoOptionOrPrompt = require("yo-option-or-prompt").default; const DEFAULT_OPTIONS = { desc: "", alias: "", type: "input" }; const RAW_OPTIONS = { na...
module.exports = { // wabpack配置的几个项 title: 'Vue Admin Template', // 网页的标题 /** * @type {boolean} true | false * @description Whether fix the header * 控制nav头部是否固定在视口上方 */ fixedHeader: false, // 控制nav头部是否固定在视口上方 /** * @type {boolean} true | false * @description Whether show the logo in sideb...
import jwt from 'jsonwebtoken'; import config from '../config/config'; const signToken = (payload, options = {}) => { const token = jwt.sign(payload, config.jwt.accessSecretKey, { expiresIn: config.jwt.accessExpiredIn, ...options, }); return token; }; const signRefreshToken = (payload, options = {}) =>...
import React from 'react'; import { render } from 'enzyme'; import { requiredProps } from '../../test/required_props'; import { KuiModalBodyText, } from './modal_body_text'; test('renders KuiModalBodyText', () => { const component = <KuiModalBodyText { ...requiredProps }>children</KuiModalBodyText>; expect(rend...
/* Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */
module.exports = async function(log, database, dbName, options, db) { let collections = await database.listCollections().toArray(); collections = collections.filter(collection => collection.name !== 'system.profile'); Promise.all(collections.map(async collection => { let results = await database.collection(...
$(document).ready(function(){ //---------------------------------- //setup scripting handler //---------------------------------- $("#mock #static_response").val( `console.log("mock/res/0.txt:start"); var resobj={}; resobj.entries=[]; var it=settings.data.entries(); var result=it.next(); while (!result.done){ cons...
/* Finally */'use strict'; var prime = require('prime'); var kindOf = require('mout/lang/kindOf'); var map = require('mout/array/map'); var slice = require('mout/array/slice'); var forEach = require('mout/array/forEach'); var reduce = require('mout/array/reduce'); var each = require('mout/collection/forEach'); var c...
function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prot...
var dir_f8d80edf8796b3b9ac230a71655db064 = [ [ "test1_braking.h", "dd/dd3/test1__braking_8h.html", [ [ "Test1Braking", "d7/d68/classambs__runners_1_1Test1Braking.html", "d7/d68/classambs__runners_1_1Test1Braking" ] ] ] ];
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ import { Injectable, NgModule, ChangeDetectionStrategy, ChangeDetectorRef, Component, EventEmitter, forwardRef, Inject...
module.exports = { llave: "carlosDIOS" }
webpackHotUpdate("cms",{ /***/ "./src/components/Navbar.js": /*!**********************************!*\ !*** ./src/components/Navbar.js ***! \**********************************/ /*! exports provided: default */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(_...
import styled from "styled-components"; const primaryColor = "#464649"; const secondaryColor = "#a87062"; const normalTextColor = "#bcbcbd"; const whiteColor = "#ffffff"; const DarkerColor = "#0c0c10"; const backgroundColor = "#151519"; export const OpenSettingsModalIcon = styled.div` position: absolute; top: 0px...
import React, {useState} from "react"; import Button from '@mui/material/Button'; import { BookSharp } from "@material-ui/icons"; // import DeleteIcon from '@mui/icons-material/Delete'; import List from '../BookShelf/BookShelf'; export default function ItemDelete() { return ( <Button variant="outli...
/** * @providesModule PanResponder */ "use strict"; var TouchHistoryMath = require('TouchHistoryMath'); var currentCentroidXOfTouchesChangedAfter = TouchHistoryMath.currentCentroidXOfTouchesChangedAfter; var currentCentroidYOfTouchesChangedAfter = TouchHistoryMath.currentCentroidYOfTouchesChangedAfter; var pre...
import {routerReducer as routing} from 'react-router-redux'; import {combineReducers} from 'redux'; import lessons from './lessons'; export default combineReducers({routing, lessons});
module.exports = async function(bot, message) { if (!bot.player.getQueue(message)) return message.channel.send("Aucune musique actuellement jouée."); bot.player.clearQueue(message); message.channel.send("La playliste à été **vidée** !"); };
define("dojox/mobile/CheckBox", [ "dojo/_base/declare", "dojo/dom-construct", "dijit/form/_CheckBoxMixin", "./ToggleButton" ], function(declare, domConstruct, CheckBoxMixin, ToggleButton){ return declare("dojox.mobile.CheckBox", [ToggleButton, CheckBoxMixin], { // summary: // A non-templated checkbox widget...
; (function (root, factory) { 'use strict' if (typeof define === 'function' && define.amd) { define('websql', factory) } else if (typeof exports === 'object') { exports = module.exports = factory() } else { root.websql = factory() } })(this, function () { 'use strict' ...
// Packages import electron from 'electron' import { PureComponent } from 'react' import { func } from 'prop-types' import retry from 'async-retry' // Styles import introStyles from '../../styles/components/tutorial/intro' // Components import Logo from '../../vectors/logo' import LoginForm from './login' import CLI ...
// Copyright (c) 2019 by Audere // // Use of this source code is governed by an MIT-style license that // can be found in the LICENSE file distributed with this file. const { nullableColumn } = require("../../util"); const schema = "chills"; module.exports = { up: async (queryInterface, Sequelize) => { await qu...
import _ from 'underscore'; import Onyx from 'react-native-onyx'; import lodashGet from 'lodash/get'; import * as API from '../API'; import ONYXKEYS from '../../ONYXKEYS'; import * as PersonalDetails from './PersonalDetails'; import Growl from '../Growl'; import CONST from '../../CONST'; import * as Localize from '../L...
/** * Analytics common components. * * Site Kit by Google, Copyright 2021 Google LLC * * 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 * * https://www.apache.org/licenses/LICENSE-2...
/* * Input Mask Core * http://github.com/RobinHerbots/jquery.inputmask * Copyright (c) 2010 - Robin Herbots * Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php) * Version: 0.0.0-dev */ (function (factory) { if (typeof define === "function" && define.amd) { define(["./d...
import React from "react" import { useStaticQuery, graphql } from "gatsby" import Img from "gatsby-image" /* * This component is built using `gatsby-image` to automatically serve optimized * images with lazy loading and reduced file sizes. The image is loaded using a * `useStaticQuery`, which allows us to load the ...