text stringlengths 2 1.05M |
|---|
export default function(method) {
const cache = {};
return spec => cache[spec] || (cache[spec] = method(spec));
}
|
import React, { Fragment } from "react";
import PropTypes from "prop-types";
import _get from "lodash.get";
// -----------------------------------------------------------------------------
function BreachDamagePerHit(props) {
const { array } = props;
// If there is no data, just return nothing
if (array === un... |
/*
YUI 3.13.0 (build 508226d)
Copyright 2013 Yahoo! Inc. All rights reserved.
Licensed under the BSD License.
http://yuilibrary.com/license/
*/
YUI.add("datasource-get",function(e,t){var n=function(){n.superclass.constructor.apply(this,arguments)};e.DataSource.Get=e.extend(n,e.DataSource.Local,{_defRequestFn:function(... |
// this file was generated by ./scripts/generate-web-api
import exec from './_exec'
import validate from './_validate'
export default function usergroupsdisable(params, callback) {
let ns = 'usergroups.disable'
let err = validate(ns, params)
if (err) {
callback(err)
}
else {
exec(ns, params, callbac... |
__history = [{"date":"2013-09-09T16:32:06.000Z","sloc":60,"lloc":27,"functions":3,"deliveredBugs":0.30376721481653685,"maintainability":61.26474449075245,"lintErrors":1,"difficulty":38.625},{"date":"2013-09-11T13:41:48.000Z","sloc":60,"lloc":27,"functions":3,"deliveredBugs":0.30376721481653685,"maintainability":61.2647... |
import React from "react"
import styled from "styled-components"
import Title from "./Title"
import { getBgColor } from "../theme/utils"
const padding = `
@media (max-width: 899px) {
padding: 1rem 2rem;
}
@media (min-width: 900px) {
padding: 4.375rem 5.25rem 3.375rem;
}
`
const Main = styled.div`
ba... |
/**
*
* @export
* @param {any} time 输入需要转化的时间参数
* @param {any} format 需要转化的格式
* @returns 返回处理后的时间格式
*/
export function dateFormat(times, format) {
// let time = Date.parse(times);
let time = new Date(times)
const between = (Date.now() - Number(time)) / 1000
if (between < 3600 && ((between / 60) < 1)) {
... |
/*
Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'stylescombo', 'bg', {
label: 'Стилове',
panelTitle: 'Стилове за форматиране',
panelTitle1: 'Блокови стилове',
panelTitle2: 'Вътрешни стилове',
pa... |
(function($) {
var cultures = $.global.cultures,
en = cultures.en,
standard = en.calendars.standard,
culture = cultures["de-CH"] = $.extend(true, {}, en, {
name: "de-CH",
englishName: "German (Switzerland)",
nativeName: "Deutsch (Schweiz)",
language: "de",
... |
import { connect } from 'react-redux';
import GennyModal from './GennyModal.jsx';
function mapStateToProps(state) {
return { sublayout: state.layouts.sublayout };
}
export default connect( mapStateToProps, null )( GennyModal );
|
var searchData=
[
['update_628',['Update',['../classCalloutManager.html#ac490b9c48d5087a96f777d09361b79c2',1,'CalloutManager::Update()'],['../classLiving.html#a3ec1f87b527100a0d6575669caa02f03',1,'Living::Update()'],['../classObjectManager.html#ac6035906749a40ec3a1d685ebed11c89',1,'ObjectManager::Update()'],['../clas... |
'use strict'
/* global formplate */
import { queryServerAndRender } from './queryServerAndRender'
//noinspection Eslint
import velocity from 'velocity-animate' // eslint-disable-line
import moment from 'moment'
import _ from 'lodash'
var resultsOuterContainer$
var dateFilterContainer$
var dateFilterMaterialIcon$
va... |
/*
Copyright 2020 AryToNeX
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 writin... |
const components = [
{
name: 'One',
source: 'one source'
},
{
name: 'Two',
source: 'two source'
}
];
const selectedComponent = components[0];
export default {
skip: true, // doesn't reflect real-world bug, maybe a JSDOM quirk
props: {
components,
selectedComponent
},
html: `
<select>
<optio... |
/**
* @file user account main js in project
* @author JYkid
* @version 0.0.1
*/
const fs = require("fs");
const express = require("express");
const webpack = require("webpack");
const devMiddleware = require("webpack-dev-middleware");
const hotMiddleware = require("webpack-hot-middleware");
const config = require... |
import { animate, state, style, transition, trigger } from '@angular/animations';
import { DomSanitizer } from '@angular/platform-browser';
import { Subject } from 'rxjs';
import { __assign, __values, __extends } from 'tslib';
import { DOCUMENT, CommonModule } from '@angular/common';
import { Directive, ElementRef, NgM... |
import itf from './itf';
import mvi from './mvi';
import formConfig from '../config/form';
import { createSaveInProgressFormReducer } from 'platform/forms/save-in-progress/reducers';
export default {
form: createSaveInProgressFormReducer(formConfig),
itf,
mvi,
};
|
/*! For license information please see 3.76af6655.js.LICENSE.txt */
(window.webpackJsonp=window.webpackJsonp||[]).push([[3],{335:function(e,t){var r=Object.prototype.hasOwnProperty,o=Object.prototype.toString;e.exports=function(e,t,n){if("[object Function]"!==o.call(t))throw new TypeError("iterator must be a function")... |
/*H-ui.js v2.3 date:9:53 2015-07-17 by:guojunhui*/
if (navigator.userAgent.match(/IEMobile\/10\.0/)) {
var msViewportStyle = document.createElement("style")
msViewportStyle.appendChild(
document.createTextNode(
"@-ms-viewport{width:auto!important}"
)
)
document.getElementsByTagName("head")... |
// This code is adapted from https://github.com/mattdiamond/Recorderjs
export const bufferToWav = (recBuffer, recLength, numChannels, sampleRate) => {
let buffer = mergeBuffers(recBuffer, recLength);
let dataview = encodeWAV(buffer, numChannels, sampleRate);
return new Blob([dataview], {type: "audio/wav"});
};
fun... |
import { createTest, destroyVM, createVue, wait } from '../util';
import Affix from 'packages/affix';
describe('Affix', () => {
let vm;
afterEach(() => {
destroyVM(vm);
});
it('create', () => {
vm = createTest(Affix, true);
expect(vm.$el).to.exist;
});
it('offsetTop', async() => {
vm = cr... |
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... |
webpackJsonp([0xb917443fa260],{47:function(e,t,n){function r(e){return null===e||void 0===e}function o(e){return!(!e||"object"!=typeof e||"number"!=typeof e.length)&&("function"==typeof e.copy&&"function"==typeof e.slice&&!(e.length>0&&"number"!=typeof e[0]))}function i(e,t,n){var i,l;if(r(e)||r(t))return!1;if(e.protot... |
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't exist... the sadness.</p>
</div>
)
export default NotFoundPage
|
module.exports = require('./commonjs/convertToJson')
|
(window.webpackJsonp=window.webpackJsonp||[]).push([[313],{384:function(e,t,r){"use strict";r.r(t),r.d(t,"frontMatter",(function(){return i})),r.d(t,"metadata",(function(){return c})),r.d(t,"rightToc",(function(){return s})),r.d(t,"default",(function(){return l}));var n=r(3),a=r(7),o=(r(0),r(485)),i={id:"hydra-keys-cre... |
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',
'codeR... |
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... |
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-2d0d2f22"],{"5b54":function(e,t,a){"use strict";a.r(t),a.d(t,"conf",(function(){return n})),a.d(t,"language",(function(){return i}));var n={comments:{lineComment:"//",blockComment:["/*","*/"]},brackets:[["[","]"],["(",")"],["{","}"]],autoClosingPairs:[{o... |
// 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
//
... |
(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&":
/*!******************************************************************************************... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.