text
stringlengths
2
1.04M
document.addEventListener('mousemove', e => { if (e.target.matches('.button:is(a, button)')) { const button = e.target const { offsetX, offsetY } = e button.style.setProperty('--hover-top', `${offsetY}px`) button.style.setProperty('--hover-left', `${offsetX}px`) } })
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, new __()); }; import { Component, ComponentFactoryResolver, ElementRef, Inje...
self["webpackHotUpdate_N_E"]("webpack",{}, /******/ function(__webpack_require__) { // webpackRuntimeModules /******/ "use strict"; /******/ /******/ /* webpack/runtime/getFullHash */ /******/ !function() { /******/ __webpack_require__.h = function() { return "7a4c4610d2ff8ea016e3"; } /******/ }(); /******/ /******/...
const Cell = require('../Cell'); /* eslint-env jest */ // Walls test('Walls all present on construction', () => { const cell = new Cell(); expect(cell.walls.left).toBe(true); expect(cell.walls.right).toBe(true); expect(cell.walls.up).toBe(true); expect(cell.walls.down).toBe(true); }); test('Remove cell func...
/* * Copyright (c) 2022. * Created by YiiMan. * Programmer: gholamreza beheshtian * Mobile:+989353466620 | +17272282283 * Site:https://yiiman.ir */ // Depends on csslint.js from https://github.com/stubbornella/csslint // declare global: CSSLint (function(mod) { if (typeof exports == "object" && typeof module...
module.exports={A:{A:{"2":"O D G E A B lB"},B:{"1":"M KB N R S T XB","2":"C I F P J K L"},C:{"1":"NB FB W V UB QB RB SB TB OB M KB N kB R S","2":"0 1 2 3 4 5 6 7 8 9 jB aB H Y O D G E A B C I F P J K L Z a b c d e f 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 Q LB MB sB vB"},D:{"1":"3 4 5 6 7 ...
import { NotImplementedError } from '../extensions/index.js'; /** * Given some integer, find the maximal number you can obtain * by deleting exactly one digit of the given number. * * @param {Number} n * @return {Number} * * @example * For n = 152, the output should be 52 * */ export default function deleteD...
/* * * 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...
/** * @fileoverview * @enhanceable * @suppress {messageConventions} JS Compiler reports an error if a variable or * field starts with 'MSG_' and isn't a translatable message. * @public */ // GENERATED CODE -- DO NOT EDIT! var jspb = require('google-protobuf'); var goog = jspb; var global = Function('return t...
/*----定数----*/ const CHROME_EXT_URL = chrome.extension.getURL("images/"); const CREW_COLORS = [ "rgba(197, 17, 17, 1.0)", "rgba(19, 46, 209, 1.0)", "rgba(17, 127, 45, 1.0)", "rgba(237, 84, 186, 1.0)", "rgba(255, 127, 39, 1.0)", "rgba(245, 245, 87, 1.0)", "rgba(99, 99, 99, 1.0)", "rgba(214, 224, 240, 1.0...
module.exports = function yamler () { this.add('role:convert-yaml,cmd:from', (msg, respond) => { respond(`${msg}`) }) this.add('role:convert-yaml,cmd:to', (msg, respond) => { respond(`${msg}`) }) }
// @flow import React, {Component} from 'react'; import {storiesOf} from '@kadira/storybook'; import SelectPanel from '../select-panel.js'; const options = [ {label: "Brian Genisio", value: 1}, {label: "John Doe", value: 2}, {label: "Jane Doe", value: 3}, ]; import type {Option} from "../select-item.js"; ...
import app from '../../src/codewars/numberOfDivisions'; it('numberOfDivisions test', () => { expect(app(6, 2)).toBe(2); expect(app(100, 2)).toBe(6); });
import React, {Component} from 'react'; import PropTypes from 'prop-types'; import {connect} from 'react-redux'; import AppNavigator from './navigators/AppNavigator'; import {THEME_COLORS} from "./constants/constants"; import createTheme, {ThemeColors} from "./commons/ThemeFactory"; import {Alert, BackHandler, Linking,...
import QDrawer from './src/QDrawer'; QDrawer.install = Vue => { Vue.component(QDrawer.name, QDrawer); }; export default QDrawer;
// Copyright (c) 2016 - 2017 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify...
"use strict"; var _this = void 0; (function ($) { var inputSelector = "".concat(['text', 'password', 'email', 'url', 'tel', 'number', 'search', 'search-md'].map(function (selector) { return "input[type=".concat(selector, "]"); }).join(', '), ", textarea"); var textAreaSelector = '.materialize-text...
import React, { useContext, useState, useEffect } from 'react'; import { Map, MapMarker } from '../_commons/Map'; import { StyledView } from '../_abstract/Styled'; import * as style from './style/stops'; import { StopsContext } from '../stops/StopsContext'; import { URI } from '../_commons/logic/constants'; import { ...
import styled from 'styled-components' export const Container = styled.div` width: 1000px; max-width: 100%; padding: 0 20px; margin: 0 auto; `
import { expect } from "chai" import { shallowMount } from "@vue/test-utils" import HelloWorld from "./HelloWorld.vue" describe("HelloWorld.vue", () => { it("renders props.msg when passed", () => { const msg = "new message" const wrapper = shallowMount(HelloWorld, { propsData: { msg }, ...
import React from 'react'; import { Navbar, Nav, NavItem } from 'reactstrap'; import SourceLink from 'components/SourceLink'; const Footer = () => { return ( <Navbar> <Nav navbar> <NavItem> 2020 LamisPlus, source on <SourceLink>Github</SourceLink> </NavItem> </Nav> </N...
import Vue from 'vue' import Router from 'vue-router' import HelloWorld from '@/components/HelloWorld' import Register from '@/components/Register' Vue.use(Router) export default new Router({ routes: [ { path: '/', name: 'HelloWorld', component: HelloWorld }, { path: '/register',...
import React from 'react' import PropTypes from 'prop-types' import exact from 'prop-types-exact' import HTTPStatus from 'http-status' import Head from './head' export default class Error extends React.Component { static getInitialProps ({ res, err }) { const statusCode = res ? res.statusCode : (err ? err.status...
import React from "react" import Layout from "../components/Layout" import useSiteMetaData from "../static_queries/useSiteMetadata" export default function Info() { const { infoData } = useSiteMetaData() return ( <Layout page="info" bgColor={infoData.background_color}> <section> <h2> <...
/* 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, software * distributed ...
/*global self, document, DOMException */ /*! @source http://purl.eligrey.com/github/classList.js/blob/master/classList.js */ // Full polyfill for browsers with no classList support if (!("classList" in document.createElement("_"))) { (function (view) { "use strict"; if (!('Element' in view)) return; var ...
/* PAGE BUILT BY: MATTHEW */ import "../App.css"; import React, { useState } from "react"; import { useNavigate, Link } from "react-router-dom"; function LoginForm({ setUser }) { let navigate = useNavigate(); const [userInfo, setUserInfo] = useState({}); const [error, setError] = useState(""); async funct...
target.foo = function () {}; echo(); exit(); cd(); pwd(); ls(); find(); cp(); rm(); mv(); mkdir(); test(); cat(); sed(); grep(); which(); dirs(); pushd(); popd(); env(); exec(); chmod(); config.hi = 'hi'; error(); tempdir(); // node stuff require('hi'); module.exports = 'hi'; process.exit();
import { storiesOf } from "@storybook/vue"; import { withKnobs, text, select } from "@storybook/addon-knobs"; import { generateStorybookTable } from "@/helpers"; import SfAlert from "./SfAlert.vue"; const scssTableConfig = { tableHeadConfig: ["NAME", "DEFAULT", "DESCRIPTION"], tableBodyConfig: [ ["$sf-alert-pa...
/** * @type import('hardhat/config').HardhatUserConfig */ require("@nomiclabs/hardhat-waffle"); require('hardhat-contract-sizer'); module.exports = { solidity: { version: "0.6.6", settings: { optimizer: { enabled: true, runs: 200 } } }, contractSizer: { alphaSort: tr...
$_L(["java.lang.LinkageError"],"java.lang.ExceptionInInitializerError",null,function(){ c$=$_C(function(){ this.exception=null; $_Z(this,arguments); },java.lang,"ExceptionInInitializerError",LinkageError); $_K(c$, function(){ $_R(this,ExceptionInInitializerError); this.initCause(null); }); $_K(c$, function(detailMessag...
//Movimento de animação para acontecer const card = document.querySelector(".card"); const container = document.querySelector(".container"); //Definir constante const title = document.querySelector(".title"); const sneaker = document.querySelector(".sneaker img"); const purchase = document.querySelector(".purchase"); c...
(function fixModules() { var ast = lively.ast, acorn = ast.acorn; delete lively.ast; Object.assign(module("lively.ast"), ast, {acorn: Object.assign(module("lively.ast.acorn"), acorn)}); module("lively.ast").isLoaded = lively.lang.fun.True; module("lively.ast.acorn").isLoaded = lively.lang.fun.True; })(); mod...
'use strict'; const Bucket = require('../bucket'); const createVertexArrayType = require('../vertex_array_type'); const createElementArrayType = require('../element_array_type'); const loadGeometry = require('../load_geometry'); const EXTENT = require('../extent'); const circleInterface = { layoutVertexArrayType:...
// Generated by CoffeeScript 2.3.2 module.exports.coordToN = function(pos) { return pos.x * 50 + pos.y; }; module.exports.nToCoord = function(n) { var y; y = n % 50; return { x: Math.floor((n - y) / 50), y: y }; }; module.exports.adjacencyOffset = [[-1, -1], [-1, 0], [-1, 1], [0, -1], [0, 0], [0, 1]...
"use strict"; var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } return new (P || (P = Promise))(function (resolve, reject) { function fulfilled(value) { t...
$(document).ready(function() { var webSocket = new WebSocket('ws://localhost:9000/socket'); $.notify.addStyle("html", { html: "<div>\n<span data-notify-html></span>\n</div>", classes: { base: { "font-weight": "bold", "padding": "8px 15px 8px 14px", ...
/** * Created by duo on 2016/9/1. */ CMD.register("AdsError", function(){ var AdsError = {}; AdsError[AdsError.NOT_INITIALIZED = 0] = "NOT_INITIALIZED"; AdsError[AdsError.INITIALIZE_FAILED = 1] = "INITIALIZE_FAILED"; AdsError[AdsError.INVALID_ARGUMENT = 2] = "INVALID_ARGUMENT"; AdsError[AdsError...
const optionConfig = require('./config/option.config'); module.exports = (api) => { const { registerCliOption, log } = api; const optionKeys = Object.keys(optionConfig); registerCliOption(optionKeys.map((optionKey) => { const { module, commands } = optionConfig[optionKey]; const moduleName = module || op...
'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); var prefix = 'far'; var iconName = 'id-card'; var width = 576; var height = 512; var aliases = [62147,"drivers-license"]; var unicode = 'f2c2'; var svgPathData = 'M368 344h96c13.25 0 24-10.75 24-24s-10.75-24-24-24h-96c-13.25 0-24 10.75-24 24S3...
/* @flow */ import * as React from 'react'; import { ActivityIndicator, Animated, View, StyleSheet } from 'react-native'; import color from 'color'; import Icon from './Icon'; import Surface from './Surface'; import Badge from './Badge'; import Text from './Typography/Text'; import TouchableRipple from './TouchableRip...
import { DxcProgressBar, DxcButton } from "@dxc-technology/halstack-react"; import { useState } from "react"; const code = `() => { const [isVisible, changeIsVisible] = useState(false); const showModal = () => { changeIsVisible(true); fetchData().then(() => { changeIsVisible(false); }); }; co...
/* Hover classes bound themselves to a node * The reddit class is directly depending from /utils/reddit-comment-embed which is the embedding library needed for the support * of dynamically added content. */ class RedditHover { constructor(node, CURRENT_TAB) { this.boundNode = node; this.redirectL...
// This product includes color specifications and designs developed by Cynthia Brewer (http://colorbrewer.org/). // JavaScript specs as packaged in the D3 library (d3js.org). Please see license at http://colorbrewer.org/export/LICENSE.txt var colorbrewer = {YlGn: { 3: ["#f7fcb9","#addd8e","#31a354"], 4: ["#fff...
'use strict'; const neoblessed = require('@blessed/neo-blessed'); const getTheme = require('./getTheme'); module.exports = function runCommand(screen, cmd) { const theme = getTheme(); const { terminal: { border, style }, } = theme; const terminal = neoblessed.terminal({ parent: screen, top: 'cente...
;(function ($, window, document, undefined) { 'use strict'; var Modernizr = Modernizr || false; Foundation.libs.joyride = { name : 'joyride', version : '5.0.0', defaults : { expose : false, // turn on or off the expose feature modal : true, // Whe...
var config = require('./config.json'); var http = require("http"); var XLSX = require('xlsx') var express = require('express'); var app = express(); app.use(function(req, res, next) { res.header("Access-Control-Allow-Origin", "*"); res.header("Access-Control-Allow-Headers", "Origin, X-Requested-With, Content-T...
console.log("popup.js loaded") chrome.browserAction.setIcon({ path: "icons/favicon.ico" }); function initData() { console.log("Checking Storage...") if(typeof(Storage) !== "undefined"){ console.log("Loading Data from Storage") if((typeof(window.localStorage.clientSDK) !== "undefined")){ console.debug...
/** * */ define(['jquery', 'css!./main'], function($){ //代理折叠功能 $('div.config-line-toggle').live('click', function(e){ var icon = $(this).find('>span>span:first'); //已经是展开的要折叠 if(icon.is('.config-minus')){ icon.attr('class', 'config-plus'); $(this).next().hide(); }else if(icon.is('.config-plus')){ ...
import { getOffset, getWidth } from '../core/utils/size'; import $ from '../core/renderer'; import Guid from '../core/guid'; import { getWindow } from '../core/utils/window'; import eventsEngine from '../events/core/events_engine'; import registerComponent from '../core/component_registrator'; import Callbacks from '.....
// import { // ApolloClient, // InMemoryCache, // HttpLink, // gql // } from '@apollo/client'; import { graphqlClient, gql } from '../../../helpers/apollo-client'; import fetchgql from '../../../helpers/fetchgql'; import { withIronSession } from "next-iron-session"; async function handler(req, res...
import React, { Component } from 'react' import { Location } from '@reach/router' import { Link } from 'gatsby' import { Menu, X } from 'react-feather' import Logo from './Logo' import { SocialIcon } from 'react-social-icons'; import './Nav.css' export class Navigation extends Component { state = { active: fal...
import extract, { getFieldAccessor } from '../extractor-s'; import q from '../dataset'; import { collect, track } from '../../../../../packages/picasso.js/src/core/data/util'; describe('extractor-s', () => { const page = { qArea: { qLeft: 0, qTop: 5, qWidth: 3, qHeight: 3, }, qMa...
angular.module('textEditor', []) .controller('EditionCtrl', ['$scope', function($scope) { $scope.state = { toolbarVisible: true, documentSaved: true }; $scope.document = { text: 'Some text' }; $scope.$watch('document.text', function(value) { $scope.state.documentSav...
import _class_call_check from "@swc/helpers/lib/_class_call_check.js"; var clodule = /*#__PURE__*/ function() { "use strict"; function clodule() { _class_call_check(this, clodule); } clodule.sfn = function sfn(id) { return 42; }; return clodule; }(); (function(clodule1) { var...
import App from "../app"; import { pubsub } from "../helpers/subscriptionManager.js"; import uuid from "uuid"; App.on("setStealthActivated", ({ id, state }) => { const sys = App.systems.find(s => s.id === id); sys.setActivated(state); pubsub.publish( "stealthFieldUpdate", App.systems.filter(s => s.type =...
/** * Hilo 1.3.0 for cmd * Copyright 2016 alibaba.com * Licensed under the MIT License */ define(function(r,o,n){var a=r("hilo/core/Class"),e=a.create({load:function(r){var o=this,n=new Image;r.crossOrigin&&(n.crossOrigin=r.crossOrigin),n.onload=function(){o.onLoad(n)},n.onerror=n.onabort=o.onError.bind(n),n.src=r....
/** * Copyright (c) 2015-present, Facebook, Inc. * All rights reserved. * * This source code is licensed under the BSD-style license found in the * LICENSE file in the root directory of this source tree. An additional grant * of patent rights can be found in the PATENTS file in the same directory. */ const Even...
"use strict"; // N A T I V E import { readFile, writeFileSync } from "fs"; import path from "path"; // I M P O R T import cwd from "cwd"; // E X P O R T export default options => { let { input, output, template } = options; input = path.join(cwd(), input); output = path.join(cwd(), output); retur...
// @flow import L from 'leaflet'; import markerIcon from '../../public/icons/place.svg'; import markerShadow from 'leaflet/dist/images/marker-shadow.png'; export default (options) => L.icon({ iconUrl: markerIcon, iconSize: [40, 40], iconAnchor: [20, 37], popupAnchor: [12, -23], tooltipAnchor: [1...
nv.models.multiBarTimeSeries = function() { "use strict"; //============================================================ // Public Variables with Default Settings //------------------------------------------------------------ var margin = {top: 0, right: 0, bottom: 0, left: 0} , width = 960 , height ...
class Gunner { /*for (let i=0; i<3; i++) { gun[i] = loadImage("img/gun"+i+".png"); console.log("img/gun"+i+".png"); }*/ constructor(x, y, ite, widtht, heightt) { this.gun = []; this.gun[0] = loadImage("img/gun0.png"); this.gun[1] = loadImage("img/gun1.png"); this.gun[2] = loadImage("img/...
export const CLA = 0x55; export const CHUNK_SIZE = 250; export const APP_KEY = "CSM"; export const INS = { GET_VERSION: 0x00, SIGN_SECP256K1: 0x02, GET_ADDR_SECP256K1: 0x04, }; export const PAYLOAD_TYPE = { INIT: 0x00, ADD: 0x01, LAST: 0x02, }; const ERROR_DESCRIPTION = { 1: "U2F: Unknown", 2: "U2F: ...
'use strict'; let alphabet = require('./alphabet'); let build = require('./build'); let isValid = require('./is-valid'); // if you are using cluster or multiple servers use this to make each instance // has a unique value for worker // Note: I don't know if this is automatically set when using third // party cluster ...
// This is a manifest file that'll be compiled into including all the files listed below. // Add new JavaScript/Coffee code in separate files in this directory and they'll automatically // be included in the compiled file accessible from http://example.com/assets/application.js // It's not advisable to add code directl...
// 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/tsSupport/declareExtendsHelper ../core/tsSupport/decorateHelper ../core/tsSupport/assignHelper ../core/lang ../core/accessorSupport...
const { Model, DataTypes } = require("sequelize"); const bcrypt = require("bcrypt"); const sequelize = require("../config/connection"); class User extends Model { checkPassword(loginPw) { return bcrypt.compareSync(loginPw, this.password); } } User.init( { id: { type: DataTypes.INTEGER, allow...
'use strict' module.exports = { NODE_ENV: '"production"', ENV_CONFIG: '"sit"', BASE_API: '' }
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Compilers = void 0; var _docker = require("../utils/docker"); var _utils = require("../utils/utils"); function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true,...
'use strict'; /* global Contact */ /** * Contact.js service * * @description: A set of functions similar to controller's actions to avoid code duplication. */ // Public dependencies. const _ = require('lodash'); const { convertRestQueryParams, buildQuery } = require('strapi-utils'); module.exports = { /** ...
import React, { useState, useEffect } from "react"; import { MenuItem, FormControl, Select, Card, CardContent, } from "@material-ui/core"; import InfoBox from "./Components/InfoBox"; import Map from "./Components/Map"; import Table from "./Components/Table"; import { sortData, prettyPrintStat } from "./util";...
const getValidator = require("../getvalidator"); beforeEach(async function () { validate = await getValidator("feed-delta-set"); }); describe("The feed-delta-set schema", () => { describe("should reject", () => { it("bad type", () => { const result = validate("INVALID"); expect(result).toBe(false)...
import {combineReducers} from 'redux'; import {loginReducer} from './loginReducer'; import {eventReducer} from './eventReducer'; import {bookingReducer} from './bookingReducer'; import {modalReducer} from './modalReducer'; import {locationReducer} from './locationReducer'; const appReducer = combineReducers({ locati...
const { extend, includes, isArray, last, noop, uniq } = require('lodash'); const OrmQueryContext = require('./context'); const RESERVED_STAGES = [ 'end', 'query', 'start' ]; class OrmQueryExecutor { constructor(config) { if (!config) { throw new Error('Config is required'); } this.config = confi...
const config = require('@config'); const proxy = require('http-proxy-middleware'); module.exports = function youtubeRoutes(app, requireAuth) { app.use( '/youtube-downloader', requireAuth(), proxy( '/', { target: 'http://localhost:3003', logLevel: config.debug ? 'debug' : 'warn', ws: true, ...
layui.define(['message','jquery', 'yaml','form', 'tab', 'menu', 'frame', 'theme'], function(exports) { "use strict"; const $ = layui.jquery, form = layui.form, yaml = layui.yaml, message = layui.message, pearTab = layui.tab, pearMenu = layui.menu, pearFrame = layui.frame, pearTheme = layui.th...
// page-script.js var iframe = window.document.getElementById("wikipedia"); var todaysFeaturedArticle = iframe.contentWindow.document.getElementById( "mp-tfa"); self.postMessage(todaysFeaturedArticle.textContent);
import angular from 'angular'; import ngTranslateAsyncLoader from '@ovh-ux/ng-translate-async-loader'; import uiRouter from '@uirouter/angularjs'; import angularTranslate from 'angular-translate'; import '@ovh-ux/ui-kit'; import access from './pack-xdsl-access.component'; const moduleName = 'ovhManagerTelecomPackXds...
import * as React from 'react' import * as M from '@material-ui/core' import * as APIConnector from 'utils/APIConnector' import MetaTitle from 'utils/MetaTitle' import * as Cache from 'utils/ResourceCache' import { Roles, Policies } from './RolesAndPolicies' import Users from './Users' import * as data from './data' ...
module.exports = Ferdi => class GoogleTranslate extends Ferdi { };
import React from "react" const SVGIcon = () => ( <svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 288 288" x="0px" y="0px" > <g> <g id="letter_group" transform="scale(1)"> <g> <g id="Calque_27"></g> <g id="Calque_26"></g> <g id=...
import { Renderer } from 'react-core/createRenderer'; import { topNodes, noop, topFibers } from 'react-core/util'; import { delayMounts, usingComponents, _getApp, updateMiniApp, callGlobalHook } from './utils'; import { render } from 'react-fiber/scheduleWork'; import { createElement } from 'react-core/createElement'; ...
import React, {useState, useEffect} from "react"; import * as yup from 'yup' import { Link, useHistory } from "react-router-dom"; import axios from 'axios' import DashboardSearchForm from './DashboardSearch' import { axiosWithAuth } from "../auth/axiosWithAuth"; const initialFormValues = { title: '', category...
Ext.define('Ext.locale.fi.data.validator.Range', { override: 'Ext.data.validator.Range', config: { nanMessage: 'Sen on oltava numeerinen', minOnlyMessage: 'On oltava vähintään {0}', maxOnlyMessage: 'Ei saa olla enempää kuin {0}', bothMessage: 'On oltava välillä {0} ja {1}' }...
/** * Copyright Camunda Services GmbH and/or licensed to Camunda Services GmbH * under one or more contributor license agreements. See the NOTICE file * distributed with this work for additional information regarding copyright * ownership. * * Camunda licenses this file to you under the MIT; you may not use this ...
/** * jsPanel - A JavaScript library to create highly configurable multifunctional floating panels that can also be used as modal, tooltip, hint or contextmenu * @version v4.13.0 * @homepage https://jspanel.de/ * @license MIT * @author Stefan Sträßer - info@jspanel.de * @github https://github.com/Flyer53/jsPanel4...
export {}; //# sourceMappingURL=connected-native-audio-buffer-source-node-factory-factory.js.map
// Get Latest from http://www.unicode.org/Public/cldr/25/ Soho.Locale.addCulture('sk-SK', { // layout/language language: 'sk', englishName: 'Slovak (Slovakia)', nativeName: 'Slovenčina (Slovensko)', // layout/orientation/@characters direction: 'left-to-right', // ca-gregorian calendars: [{ name: 'gr...
/** * Handles toggling the navigation menu for small screens and * accessibility for submenu items. */ ( function() { var nav = document.getElementById( 'site-navigation' ), button, menu; if ( ! nav ) { return; } button = nav.getElementsByTagName( 'button' )[0]; menu = nav.getElementsByTagName( 'ul' )[0]; ...
/*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *---------------------------------------------------------------...
/*! * remark v1.0.5 (http://getbootstrapadmin.com/remark) * Copyright 2015 amazingsurge * Licensed under the Themeforest Standard Licenses */ $.components.register("nestable", { mode: "default" });
const async = require("async"); /** * Returns true iff the elements of 2 arrays are equal. * @param {object[]} p1 * @param {object[]} p2 */ function isEqualPoints(p1, p2) { if (p1.length == p2.length) { for(var i = 0; i < p1.length; i++) { if(p1[i] != p2[i]) { return false; ...
'use strict'; let datafire = require('datafire'); let openapi = require('./openapi.json'); let aws = require('aws-sdk'); const INTEGRATION_ID = 'amazonaws_elastictranscoder'; const SDK_ID = 'ElasticTranscoder'; let integ = module.exports = new datafire.Integration({ id: INTEGRATION_ID, title: openapi.info.title,...
module.exports = { '*.{js,vue}': ['npm run lint-fix'] }
Tap.options = { eventName: 'tap', fingerMaxOffset: 11 }; var attachDeviceEvent, init, handlers, deviceEvents, coords = {}; attachDeviceEvent = function(eventName) { return utils.attachEvent(document.documentElement, deviceEvents[eventName], handlers[eventName]); }; ...
h(f(g(() => { a })))
import React, { Component } from "react"; import axios from "axios"; import ReactHtmlParser from "react-html-parser"; import BlogForm from "../blog/blog-form"; import BlogFeaturedImage from "../blog/blog-featured-image"; export default class BlogDetail extends Component { constructor(props) { super(props)...
/* * Copyright 2014 Petr, Frank Breedijk * * 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 agree...
//# sourceMappingURL=DatePicker.js.map
import Preview from '../../components/imagepreview/preview'; export default function (datas, index) { return this.$Modal({ className: 'h-image-preview-modal', component: { vue: Preview, datas: { isShow: true, datas, index } } }); }