text stringlengths 2 1.04M |
|---|
import { createStore, applyMiddleware, compose, combineReducers } from "redux";
import thunk from "redux-thunk";
// import usersReducer from "./reducers/users.js";
import currentUser from "./reducers/currentUser.js";
import loginForm from "./reducers/loginForm.js";
import myBooks from "./reducers/myBooks.js";
import bo... |
'use strict';
const test = require('ava');
const fs = require('fs');
const {promisify} = require('util');
const temp = require('./');
const pathExists = require('path-exists');
const writeFile = promisify(fs.writeFile);
test.serial.afterEach(async () => {
await temp.cleanup();
});
test.serial('file()', async t => ... |
export default [
{
input: 'src/js/detectWAMeta.js',
output: [{
file: 'dist/chrome/contentWA.js',
format: 'iife'
}, {
file: 'dist/edge/contentWA.js',
format: 'iife'
}, {
file: 'dist/firefox/contentWA.js',
format: ... |
var dynamoose = require('dynamoose');
var captureSchema = new dynamoose.Schema({
requestId: {
type: String,
hashKey: true
},
uid: {
type: String,
},
url: {
type: Object
},
'1920x1080': {
type: String,
default: null
},
... |
import React, { useState } from "react";
import { useDispatch } from "react-redux";
import { addItem } from "../actions/listAction";
function TodoForm() {
const [inputValue, SetInputValue] = useState(" ");
const dispatch = useDispatch();
function handleChange(event) {
let value = event.target.value;
... |
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports["default"] = void 0;
var _ApiClient = _interopRequireDefault(require("../ApiClient"));
var _RestRelationResponse = _interopRequireDefault(require("../model/RestRelationResponse"));
var _RestUserStateResponse = _interopRequireDefa... |
var NAVTREE =
[
[ "OpenMesh", "index.html", [
[ "OpenMesh Documentation", "index.html", "index" ],
[ "Todo List", "a01166.html", null ],
[ "Deprecated List", "a01167.html", null ],
[ "Modules", "modules.html", "modules" ],
[ "Namespaces", null, [
[ "Namespace List", "namespaces.html", "names... |
define(function(require){
var $ = require("jquery");
var editormd = require("editormd");
require("../../src/js/languages/en"); // 加载英语语言包
console.log($, editormd);
$.get("./test.md", function(md){
testEditor = editormd("test-editormd", {
width: "90%",
... |
window[document.currentScript.getAttribute("jsonpFunction") || "scriptsJsonpLoaded"]({
moveFocusAfterComboboxAndSetValueToAlabama(testPageDocument) {
// sets focus on a link after the Combobox, and sets the combobox value to 'Alabama'
testPageDocument.querySelector('#cb1-button').style.display = 'none';
t... |
// Generated by CoffeeScript 1.10.0
(function() {
var add_user, app, express, fs, http, io, multer, port, randomcolor, remove_user, status, upload, upload_dir;
express = require('express');
app = express();
http = require('http').Server(app);
io = require('socket.io')(http);
multer = require('multer');... |
import React, { Fragment } from "react"
import "../utils/convertkit-form-short-styling.css"
import "./newsletterformshort.css"
export default function NewsletterFormShort() {
return (
<Fragment>
<p>
Want to <b>stay in-touch</b> about new articles and tools/products I build?
</p>
<form
... |
/*!
* GSDevTools 3.7.0
* https://greensock.com
*
* @license Copyright 2008-2021, GreenSock. All rights reserved.
* Subject to the terms at https://greensock.com/standard-license or for
* Club GreenSock members, the agreement issued with that membership.
* @author: Jack Doyle, jack@greensock.com
*/
/* eslint-dis... |
$(document).ready(function () {
// GLOBAL VARIABLES
// ======================================================================================
const usernameInput = $("#username");
const passwordInput = $("#password");
const passwordInputConfirm = $("#passwordConfirm")
// EVENT LISTENERS
// ... |
require('./b')
// Note that this is importing an "external" package.
require('chai') |
export const isArr = Array.isArray;
export const isObj = x => !!x && typeof x === 'object' && !isArr(x);
export const arrEq = (a1, a2, elemEq) => (
a1.length === a2.length && a1.every((x, i) => elemEq(x, a2[i]))
);
const strEq = (s1, s2) => s1 === s2;
export const objEq = (o1, o2, valueEq) => {
// It is safe to... |
'use strict';
var config = require('../config');
var gulp = require('gulp');
var templateCache = require('gulp-angular-templatecache');
// Views task
gulp.task('views', function() {
// Put our index.html in the dist folder
gulp.src('app/index.html')
.pipe(gulp.dest(config.dist.root));
gulp.src(... |
import testingDB from 'api/utils/testing_db';
import { testingEnvironment } from 'api/utils/testingEnvironment';
import migration from '../index.js';
import fixtures from './fixtures.js';
describe('migration remove-pdfinfo-property', () => {
beforeEach(async () => {
spyOn(process.stdout, 'write');
await test... |
var $ = jQuery.noConflict();
$(document).ready(function () {
});
const form = $("#bigForm");
form.on('submit', (e) => {
sendForm(e);
});
function sendForm(e) {
e.preventDefault();
const ajax_url = $('[name="ajax_url"]').val();
var myData = $(form).serialize();
validateForm(form);
if ($('.no-valid')... |
module.exports = function() {
const numeros = [1, 2, 3];
numeros.filter(num => num > 3);
}; |
var THREE = require('three');
var _ = require('underscore');
var Events = require('backbone-events');
var SolariTexture = require('./solari-texture');
var SolariRow = require('./solari-row');
String.prototype.rpad = function (padString, length) {
var str = this;
while (str.length < length) {
str = str + padStr... |
var BotGame = function(_configuration, _gameParams, replay){
var self = this;
// TODO
} |
define([
"dojo/_base/declare",
"dijit/_WidgetBase",
"dojo/Evented",
"dojo/_base/lang",
"dojo/_base/array",
"esri/dijit/Search",
"esri/tasks/locator",
"esri/layers/FeatureLayer",
"jimu/utils",
"dojo/dom-construct",
"jimu/LayerInfos/LayerInfos",
"./searchSourceUtils",
"dojo/when",
"dojo/Defer... |
const Command = require('../Command')
const DiscordServer = require('../../DiscordServer')
module.exports =
class UpdateCommand extends Command {
constructor(client) {
super(client, {
name: 'update',
aliases: ['roverupdate'],
description: "`<Discord User>` Forcibly updat... |
/**
* Created by Michael on 07/11/2014.
*/
var gulp = require('gulp');
var concat = require('gulp-concat');
var less = require('gulp-less');
var minifyCss = require('gulp-minify-css');
var uglify = require('gulp-uglify');
var inject = require('gulp-inject');
var rename = require('gulp-rename');
var merge = require('... |
import React, { Fragment, useEffect } from 'react';
import { connect, useSelector, useDispatch } from 'react-redux';
import { bindActionCreators } from 'redux';
import Link from '../components/Link';
import Icon from '../components/Icon';
import Parallax from '../components/Parallax';
import TrackList from '../componen... |
/* @flow */
import config from '../config'
import Watcher from '../observer/watcher'
import { mark, measure } from '../util/perf'
import { createEmptyVNode } from '../vdom/vnode'
import { updateComponentListeners } from './events'
import { resolveSlots } from './render-helpers/resolve-slots'
import { toggleObserving }... |
var Buttons = {
/**
* [addAlbumsEvent description]
* @param {[type]} event [description]
*/
addAlbumsEvent: function(event, cy, layout) {
try {
var target = event.target || event.cyTarget;
var data = target.data();
console.log("addAlbums artist json:" ... |
var redo_buffer = [];
const REDO_BUFFER_LEN = 30;
// Called when an action is undone
function undo_action(type, data){
if (redo_buffer.length < REDO_BUFFER_LEN){
redo_buffer.push({ "type": type, "data":data } );
}
else{
// Removes the front of the buffer queue
redo_buffer.shift();
// Appends to the end of ... |
import React, { Component } from 'react';
import Header from './header/header';
import Banner from './banner/banner';
import Navigation from './navigation';
import FooterTop from './footer/footer_top';
import FooterBottom from './footer/footer_bottom';
class Home extends Component {
render() {
return (
... |
/*
Copyright (c) 2004-2016, The JS Foundation All Rights Reserved.
Available via Academic Free License >= 2.1 OR the modified BSD license.
see: http://dojotoolkit.org/license for details
*/
//>>built
define("dojo/cldr/nls/islamic",{root:{"months-format-abbr":"Muh.;Saf.;Rab. I;Rab. II;Jum. I;Jum. II;Raj.;Sha.;Ram.;S... |
import styled from 'styled-components';
export const Container = styled.div`
max-width: 600px;
margin: 50px auto;
display: flex;
flex-direction: column;
header {
display: flex;
align-self: center;
align-items: center;
button {
border: 0;
background: none;
}
strong {
... |
import React, { useState } from "react";
import transformer from "../code/modules/membership/transformer";
import { changeLocale } from "../modules/localization/change_locale";
// generates router from `code/routers/routes` with help of router_helper functions
import RoutersComponent from "./router";
// you can add s... |
const Users = require("../usersModel");
const Auth = require("../../auth/authModel");
const generateToken = require("../../../token/token");
module.exports = {
verifyUserExist,
checkIfUserExist,
verifyAccountOwner
};
async function verifyUserExist(req, res, next) {
try {
const { id } = await Users.findByI... |
/* eslint-disable no-inline-comments, max-len */
import GL from '../constants';
import { isWebGL2 } from '../webgl-utils';
const WEBGL_LIMITS = {
[GL.ALIASED_LINE_WIDTH_RANGE]: {
gl1: new Float32Array([1, 1])
},
[GL.ALIASED_POINT_SIZE_RANGE]: {
gl1: new Float32Array([1, 1])
},
[GL.MAX_TEXTURE_SIZE]: {... |
$(document).ready(function(){
$('.carousel').carousel();
}); |
import React from "react"
import jQuery from "jquery"
export default () => (
<div id="map-prairie-popup" className="map-popup-container hidden loading">
<a href="#" id="state" className="hidden"></a>
<a href="#" id="viewfullmap" className="hidden">
View full map
</a>
<div className="map-wrapper... |
/**
* WordPress preset
*
* @public
*/
module.exports = {
extends: ['./react'],
env: {
jquery: true,
},
globals: {wp: true},
} |
//# sourceMappingURL=sentry~checkout-213470ac.js.map |
const path = require('path');
const loaderUtils = require('loader-utils');
function install(content, icons) {
if (icons.length) {
let newContent = '/* icons-loader */\n';
newContent += `import installIcons from ${loaderUtils.stringifyRequest(
this,
'!' + require.resolve('./runtime.js')
)}\n`;... |
import request from '@/utils/request'
export default{
uploadImg(file){
return request({
headers: {
'Content-Type': 'multipart/form-data'
},
url:`/file-info/upload-image`,method:'post',
file//data:data简写
}
)
}
} |
//dados
const proffys = [
{
name: "Diego Fernandes",
avatar: "https://github.com/diego3g.png",
whatsapp: "900000000",
bio: "Entusiasta das melhores tecnologias de química avançada. Apaixonado por explodir coisas em laboratório e por mudar a vida das pessoas através de experiências. Mai... |
var animals = ["cat", "dog", 2, "bird", "raccoon", "bear", 11, "rabbit", "coyote", "deer", 13, "buffalo", "lizard", "turtle"];
removeItem(animals, 2);
// Add code to remove the other two numbers from the list
removeItem(animals, 5);
removeItem(animals, 8);
console.log(animals);
var months = ["January", "February", ... |
/**
* @file attrs.js
* @brief parse tag attribute
* @author simparts
*/
const util = require('../util.js');
const ConfArg = require('./tdata/ConfArg.js');
let thisobj = null;
let is_harf = (prm) => {
try {
let chk = null;
for (let ihp_idx in prm) {
if (null === chk) {
... |
"use strict";
/**
* Rhizome API -
*
* @file user.js
* @description
* @author Chris Bates-Keegan
*
*/
const restler = require('restler');
const Rhizome = require('./rhizome');
/**
* @return {Promise} - resolves when completed
*/
function _rmAllUserTokens() {
return new Promise((resolve, reject) => {
let... |
import { insertMarkdownText } from '~/lib/utils/text_markdown';
describe('init markdown', () => {
let textArea;
beforeAll(() => {
textArea = document.createElement('textarea');
document.querySelector('body').appendChild(textArea);
textArea.focus();
});
afterAll(() => {
textArea.parentNode.rem... |
define(function(require) {
var Collection = require('backbone').Collection;
return Collection.extend({
});
}); |
"use strict";
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard");
Object.defineProperty(exports, "__esModule", {
value: true
});
exports["default"] = void 0;
var React = _interopRequireWildcar... |
const test = require('ava')
const splituniq = require('./')
test('splits, trims & dedups', t => {
t.deepEqual(splituniq('beep, boop, beep'), ['beep', 'boop'])
t.deepEqual(splituniq('beep | boop | beep', '|'), ['beep', 'boop'])
}) |
import divide from "./../src/divide.js";
import chai from "./../node_modules/chai/chai.js";
import { assert } from "chai";
describe('Divide function', function(){
it('divide(6,4) should be equal to 1.5', function(){
assert.equal(divide(6,4), 1.5);
});
it ("divide(4, 0) should be equal to one")
})... |
import { formatMuiErrorMessage as _formatMuiErrorMessage } from "@mui/utils";
/**
* Returns a number whose value is limited to the given range.
* @param {number} value The value to be clamped
* @param {number} min The lower boundary of the output range
* @param {number} max The upper boundary of the output range
... |
(window["webpackJsonp"] = window["webpackJsonp"] || []).push([[0],{
/***/ "./b.js":
/*!**************!*\
!*** ./b.js ***!
\**************/
/*! no static exports found */
/***/ (function(module, exports) {
module.exports = 'b';
/***/ })
}]); |
'use strict';
const Promise = require('bluebird');
const Tokens = require('csrf');
const _ = require('lodash');
const config = require('config');
const httpErrors = require('http-errors');
let options = _.pick(config.csrf, ['saltLength', 'secretLength']);
let tokens = new Tokens(options);
function create(req, res,... |
var self;
function __init_local(i,v_c,v_t,local_flag){
var __name = i.name.substring(0, 4).toLowerCase();
if(local_flag)__name=i.name;
self.model = 0;
self.Structures[ __name ] = { obj:i, representations:{'selection':{},'keep_selection':{}} };
if(Object.keys(top.no_aa_ch).length > 0){
var ... |
/*! PhotoSwipe - v4.1.3 - 2019-01-08
* http://photoswipe.com
* Copyright (c) 2019 Dmitry Semenov; */
(function (root, factory) {
if (typeof define === 'function' && define.amd) {
define(factory);
} else if (typeof exports === 'object') {
module.exports = factory();
} else {
root.PhotoSwipe = factory();
}
})(... |
/* global module:false */
module.exports = function(grunt) {
var port = grunt.option('port') || 8000;
var base = grunt.option('base') || '.';
// Project configuration
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
meta: {
banner:
'/*!\n' +
' * reveal.js <%= pkg.version %> (<%= grunt.te... |
import request from '@/utils/request'
export function login(data) {
return request({
url: '/API/UserInfo/UserLogin',
method: 'post',
data
})
}
export function getInfo(userId) {
return request({
url: '/API/UserInfo/GetUserDetail',
method: 'get',
params: { userId }
})
}
export function ... |
import Component from '@ember/component';
import layout from '../../templates/components/ember-pojo-form/form-submit-button';
import { inject as service } from '@ember/service';
export default Component.extend({
layout,
tagName: 'button',
emberPojoForms: service(),
classNames: ['form-submit-button'],
classNa... |
import React from 'react';
import { Link, withRouter } from 'react-router-dom';
import PropTypes from 'prop-types';
import routes from '../../routes';
import '../../styles/base.scss';
const MoviesList = ({ movies, location }) => {
return (
<ul>
{movies.map( movie => {
const { ba... |
var app = null;
var eventAggregator = new Vue();
function addLoadEvent(func) {
var oldonload = window.onload;
if (typeof window.onload != 'function') {
window.onload = func;
} else {
window.onload = function() {
if (oldonload) {
oldonload();
}
... |
import { r as registerInstance, c as createEvent, h, H as Host, d as getElement } from './core-7a7a831b.js';
const JeepFullscreen = class {
constructor(hostRef) {
registerInstance(this, hostRef);
//************************
//* Property Definitions *
//************************
... |
//# sourceMappingURL=mailgo.dark.min.js.map |
const fs = require('fs');
const PACKAGE_JSON_PATH = './package.json';
// Pull request runs of this script will have an argument passed as true (see Set Dependency Versions steps)
const DEPENDENCY_VERSIONS = process.argv[process.argv.length - 1] === 'true' ? {
'apify': 'beta',
'puppeteer': 'latest',
'play... |
const { indexed, title } = require('./shared')
const { links } = require('../links')
function renderInputs(e, out) {
if (!e || e.length === 0) {
return
}
out('|Input name|Type|Indexed|')
out('|----|----|:----:|')
e.forEach(ev =>
out(`|${ev.name}|[${ev.type}](${links[ev.type]})| ${indexed(ev)} |`)
... |
import { Meteor } from 'meteor/meteor';
import u2f from "u2f";
const APP_ID = Meteor.settings.APP_ID;
const username = Meteor.settings.username;
if(! APP_ID || ! username) {
throw new Meteor.Error('Incorrect settings.')
}
Meteor.methods({
'u2f.registrationVerificationHandler'(req, res) {
const user ... |
// Get dependencies
const express = require('express');
const path = require('path');
const http = require('http');
const cors = require('cors');
const bodyParser = require('body-parser');
const passport = require('passport');
require('./src/config/db');
require('./src/config/passport');
const app = express();
app.u... |
MobData = {
744: [ {"id":"0","inid":0,"type":2,"name":"骸骨王","repop":120,"id_area":3,"lv_min":0,"lv_max":0,"is_npc":false,"real_posx":29.8,"real_posy":32.47,"posx":202.62,"posy":110.83},
{"id":"1","inid":1,"type":1,"name":"討伐団レーナ","repop":120,"id_area":256,"lv_min":0,"lv_max":0,"is_npc":false,"real_posx":56.19,"real_p... |
const http = require ( 'http' )
const { parseHTTPBody, getIPAddress, httpRequest } = require ( '../util' )
const Context = require ( './context.class' )
const RPC = require ( './rpc.interface.class' )
const Global = require ( '../global' )
module.exports = class HTTPModule {
/**
* @type {RPC}
*/... |
import Check from "./check";
import Try from "./switch";
const mock = {
bigStat: [
{
icon: [<img src="https://image.freepik.com/vecteurs-libre/illustration-concept-abstrait-service-voiture_335657-1842.jpg" width="140" />],
text:[<h2>Car Maintenance</h2>],
box:[<Check/>],
toggle:[<T... |
/**
* Created by yuanzhou.xu on 2018/5/15.
*/
import React, { Component } from 'react';
import {
StatusBar,
View,
StyleSheet,
Platform,
TouchableOpacity,
Text,
Dimensions,
BackHandler,
ActivityIndicator,
Animated,
NetInfo,
Image,
ScrollView
} from 'react-native';
import VLCPlayerView from ... |
'use strict';
const stream = require('stream');
const defaultSize = 10000;
const defaultReserve = 100;
module.exports = (size, reserve) => {
const bufferSize = size || defaultSize;
const bufferReserve = reserve || defaultReserve;
const bufferCapacity = bufferSize - bufferReserve;
const buffer = Buffer.allocU... |
module.exports = {
// tab = 4空格
tabWidth: 4,
bracketSpacing: false,
jsxBracketSameLine: true,
singleQuote: true,
trailingComma: 'all',
//是否需要分号
"semi":false ,
} |
import React from 'react';
import Form from 'react-bootstrap/Form';
import Button from 'react-bootstrap/Button';
import Container from 'react-bootstrap/Container';
import Row from 'react-bootstrap/Row';
import Col from 'react-bootstrap/Col';
const CreateDailyMenu = props => {
return (
<Container>
... |
export default class Gate {
constructor(user) {
this.user = user;
}
isAdmin() {
return this.user.type === 'admin';
}
isUser() {
return this.user.type === 'user';
}
isAdminOrAuthor() {
if (this.user.type === 'admin' || this.user.type === 'author') {
... |
'use strict';
angular.module('eventsApp.version', [
'eventsApp.version.interpolate-filter',
'eventsApp.version.version-directive'
])
.value('version', '0.1'); |
const appServer = require('./bin/app/server');
const AppServer = new appServer();
AppServer.server.listen(1000, (err) => {
if(err){
console.log(err)
}else{
console.log('Jalan')
}
}) |
export default class Developer {
static developers() {
const karumies = {
pedro: new Developer( 'Pedro', 3 ),
fran: new Developer( 'Fran', 1 ),
davide: new Developer( 'Davide', 0 ),
sergio: new Developer( 'Sergio', 2 ),
jorge: new Developer( 'Jorge', 1 )
};
return kar... |
'use strict';
var Freemarker = require('freemarker.js');
var root = fis.project.getProjectPath();
var views = fis.get('freemarker.views') || "views";
var fm = new Freemarker({
viewRoot: root,
options: {
/** for fmpp */
}
});
function _getInitData(filePath){
var json,initFile = fis.file(root,filePath);
if(... |
/*! For license information please see app.min.js.LICENSE.txt */
//# sourceMappingURL=js/app.min.js.map |
/**
* @jest-environment ./__tests__/html/__jest__/WebChatEnvironment.js
*/
describe('offline UI', () => {
test('should show "Taking longer than usual to connect" UI when reconnection is slow', () =>
runHTMLTest('offlineUI.slowNetwork.reconnect.html'));
}); |
var typedoc = typedoc || {};
typedoc.search = typedoc.search || {}; |
/**
* DevExtreme (ui/toolbar/ui.toolbar.menu.js)
* Version: 16.2.5
* Build date: Mon Feb 27 2017
*
* Copyright (c) 2012 - 2017 Developer Express Inc. ALL RIGHTS RESERVED
* EULA: https://www.devexpress.com/Support/EULAs/DevExtreme.xml
*/
"use strict";
var $ = require("jquery"),
registerComponent = require("..... |
export default function ({ store, redirect }) {
// If the user is authenticated redirect to home page
if (store.state.auth.user) {
return redirect('/')
}
} |
import DB from '../src/db/db';
(async function() {
const db = new DB();
await db.init({ reset: false });
await db.ddoc();
})(); |
import { addLocaleData } from 'react-intl';
for (let i = 0; i < $APP_CONFIG.locales.length; i++) {
const locale = $APP_CONFIG.locales[i];
try {
addLocaleData(require(`react-intl/locale-data/${locale}`));
}
catch (err) {
// eslint-disable-next-line no-console
console.error(`No locale data fround fo... |
/*!!
* Canvas 2 Svg v1.0.19
* A low level canvas to SVG converter. Uses a mock canvas context to build an SVG document.
*
* Licensed under the MIT license:
* http://www.opensource.org/licenses/mit-license.php
*
* Author:
* Kerry Liu
*
* Copyright (c) 2014 Gliffy Inc.
*/
;(function () {
"use stric... |
"use strict";
const Homey = require("homey");
class MyZigbeeApp extends Homey.App {
onInit() {
this.log("My Zigbee App initiating...");
}
}
module.exports = MyZigbeeApp; |
/**
* Copyright (c) 2013-present, Facebook, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @providesModule ReactTestRenderer
* @flow
*/
'use strict';
var ReactComponentEnvironment = require('ReactComponentEnvironment');
va... |
Moralis.initialize("O1aDEgB1n20zIRTX7RrOKvoFv4acX79EV2TxQOV9"); // APP ID
Moralis.serverURL = "https://pftz8ii8g8bn.moralis.io:2053/server";
const appHeaderContainer = document.getElementById("app-header-btns");
const searchInput = document.getElementById("input-search");
const msgContainer = document.getElementById("... |
import React from 'react'
import classes from './ProjectPage.scss'
export const ProjectNotFoundPage = () => (
<div className={classes.container}>Project Not Found</div>
)
export default ProjectNotFoundPage |
import React from 'react';
import PropTypes from 'prop-types';
import { FormLayout, SelectMimicry } from '@vkontakte/vkui';
import get from 'lodash/get';
// Configs
import { COUNTRY_LIST } from '../../configs/country';
const SelectCountry = ({ setActiveView, countryViewName, selectedCountry }) => {
/**
* @r... |
"use strict";
/*
* SPDX-License-Identifier: Apache-2.0
*/
Object.defineProperty(exports, "__esModule", { value: true });
var asset_1 = require("./adt/asset");
exports.Asset = asset_1.Asset;
var business_1 = require("./adt/business");
exports.Business = business_1.Business;
var device_1 = require("./adt/device");
expo... |
import './index.css'
import {
Scene,
PerspectiveCamera,
Vector2,
Vector3,
Matrix4,
WebGLRenderer,
PCFSoftShadowMap,
Uncharted2ToneMapping,
Color,
FogExp2,
Mesh,
SphereBufferGeometry,
MeshBasicMaterial,
WebGLRenderTarget,
DepthTexture,
MeshDepthMaterial,
// Water imports
PlaneBufferG... |
"use strict";
exports.__esModule = true;
exports.default = void 0;
var _nodeBuilder = require("../node-builder");
var _instruction = _interopRequireDefault(require("../instruction"));
var _esotopeHammerhead = require("esotope-hammerhead");
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj :... |
/*!
* Bootstrap-select v1.13.0-beta (https://developer.snapappointments.com/bootstrap-select)
*
* Copyright 2012-2018 SnapAppointments, LLC
* Licensed under MIT (https://github.com/snapappointments/bootstrap-select/blob/master/LICENSE)
*/
!function(a,b){"function"==typeof define&&define.amd?define(["jquery"]... |
/**
* Copyright 2019, SumUp 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 wri... |
'use strict'
const ipns = require('ipns')
const { fromB58String, toB58String } = require('multihashes')
const PubsubDatastore = require('datastore-pubsub')
const withIs = require('class-is')
const errcode = require('err-code')
const debug = require('debug')
const log = debug('ipfs:ipns:pubsub')
log.error = debug('ip... |
/**
* Magento
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE_AFL.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy... |
import React, {useEffect, useState} from 'react';
import Button from "@material-ui/core/Button";
import CircularProgress from "@material-ui/core/CircularProgress";
import Paper from "@material-ui/core/Paper";
import Table from "@material-ui/core/Table";
import TableBody from "@material-ui/core/TableBody";
import Table... |
import{e as c,h as i,o as u,c as d,b as r,x as f}from"./app.232643d3.js";import{_ as m}from"./plugin-vue_export-helper.21dcd24c.js";const p=c({emits:["selectDate","cancel"],props:{selectText:{type:String,default:"Select"},cancelText:{type:String,default:"Cancel"},internalModelValue:{type:[Date,Array],default:null},rang... |
export default class UriWithCustomCategoryCollector {
constructor(eventCategory) {
this.eventCategory = eventCategory;
}
async prepare (event) {
event.eventSource = window.location.href;
event.eventCategory = this.eventCategory;
return event;
}
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.