text stringlengths 2 1.04M |
|---|
import React from 'react'
import { Link } from 'gatsby'
import Layout from '../components/layout'
import Head from '../components/head'
const NotFound = () => {
return (
<Layout>
<Head title="Page Not Found" />
<h1>Page Not Found</h1>
<p><Link to="/">Return to Homepage<... |
exports.view = function(req, res){
res.render('personality');
}; |
var group__group01_structsi473x__gpio__ien_8arg =
[
[ "STCIEN", "group__group01.html#ab09bf67829bc4d5914945a87be624698", null ],
[ "DUMMY1", "group__group01.html#a3651c40ccc4450f2fc89fa3139dedd5a", null ],
[ "RSQIEN", "group__group01.html#afa4d97a23dde5b951754d19241a9c117", null ],
[ "DUMMY2", "group__g... |
import jwt from 'jsonwebtoken';
import { config } from 'dotenv';
config();
const userToken = (payload) => {
const token = jwt.sign(payload, process.env.JWT_SECRET, {
expiresIn: '24h',
});
return token;
};
export default { userToken }; |
/**
* Copyright 2013-2018 the original author or authors from the JHipster project.
*
* This file is part of the JHipster project, see https://www.jhipster.tech/
* for more information.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the L... |
/* Copyright (c) 2006-2013 by OpenLayers Contributors (see authors.txt for
* full list of contributors). Published under the 2-clause BSD license.
* See license.txt in the OpenLayers distribution or repository for the
* full text of the license. */
/**
* @requires OpenLayers/Symbolizer.js
*/
/**
* Class: OpenLa... |
import {StyleSheet} from 'react-native';
export default {
component: StyleSheet.create({
container: {
padding: 8,
flex: 1,
flexDirection: 'column',
paddingBottom: 0,
paddingTop: 0
},
field: {
height: 40,
pad... |
import AppDispatcher from '../dispatcher/app-dispatcher';
import FluxConstants from '../constants/flux-constants';
import Api from '../service/api.js';
let AuthorNameSorterActions = {
sortListByAuthorStroke(list) {
let charStrokeMap = {},
charactersNeedToBeLookUp = [],
seperatorRegex = /[ ,.、。,\n]/,
... |
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var path = _interopRequireWildcard(require("path"));
var os = _interopRequireWildcard(require("os"));
var _sourceMap = require("source-map");
var _schemaUtils = require("schema-utils");
var _serializeJavascrip... |
'use strict';
const fs = require('fs');
const { s3 } = require('@cumulus/aws-client/services');
const { s3Join } = require('@cumulus/aws-client/S3');
const { constructCollectionId } = require('@cumulus/message/Collections');
const { randomString } = require('@cumulus/common/test-utils');
const { LambdaStep } = require... |
import React from 'react'
import PropTypes from 'prop-types'
import {getCommune} from '../../lib/api-geo'
import {getCommune as getCommuneExplore} from '../../lib/explore/api'
import Page from '../../layouts/main'
import Section from '../../components/section'
import withErrors from '../../components/hoc/with-errors'
... |
const { config } = require("../config");
// Define a Knex connection. Currently, this is used only to instantiate the
// rethink-knex-adapter's connection. In the future, if the adapter is
// deprecated, a better pattern would be to instantiate knex here and export
// that instance, for reference everywhere else in th... |
require('./bootstrap');
window.Vue = require('vue').default;
window.bus = new Vue();
export const bus = new Vue();
Vue.use(VueRouter)
// ES6 Modules or TypeScript
import Swal from 'sweetalert2'
window.Swal=Swal;
const Toast = Swal.mixin({
toast: true,
position: 'top-end',
showConfirmButton: false,
... |
const { MessageEmbed } = require('discord.js');
const db = require('quick.db');
module.exports = {
config: {
name: "leaderboard",
aliases: ['lb'],
category: 'economy',
description: 'Shows Server\'s Top 10 Users of Economy Leaderboard',
usage: ' ',
accessableby: "ever... |
layui.define(['jquery','chncrs'],function(exports){
var $ = layui.jquery,
chncrs = layui.chncrs;
var converter = {
lngLatToJson:function (latitude, longitude) {
var json = {"Lat": latitude, "Lng": longitude};
return json;
},
BD09LLToGCJ02:function (longitude,... |
module.exports = {
up: (queryInterface, Sequelize) =>
queryInterface.createTable('Areas', {
id: {
type: Sequelize.INTEGER,
allowNull: false,
primaryKey: true,
autoIncrement: true,
},
name: {
type: Sequelize.STRING,
allowNull: false,
},
... |
define(
//begin v1.x content
{
"dateFormatItem-yyyyMMMEd": "U年MMMd日E",
"field-dayperiod": "上午/下午",
"field-minute": "分钟",
"dateFormatItem-MMMEd": "MMMd日E",
"field-day-relative+-1": "昨天",
"field-day-relative+-2": "前天",
"field-weekday": "星期",
"months-standAlone-narrow": [
"正",
"二",
"三",
"四",
"五",
"六",
... |
#!/usr/bin/env node
const meow = require('meow');
const furacaoNaSoraka = require('./index')
// TODO: when tail call optimization is implemented on NodeJS, simplify this.
const cliMode = async ({ flags }) => {
while(true)
await furacaoNaSoraka()
}
const cliInterface = meow({})
cliMode(cliInterface) |
import fs from 'fs-extra';
import path from 'path';
import dedent from 'dedent-js';
import temp from 'temp';
import compareSets from 'compare-sets';
import isEqual from 'lodash.isequal';
import {CompositeDisposable, Disposable} from 'event-kit';
import Repository from '../../lib/models/repository';
import {nullCommit}... |
import React from 'react';
import CssBaseline from '@material-ui/core/CssBaseline';
import { Helmet } from 'react-helmet';
import { Switch, Route } from 'react-router-dom';
import HomePage from 'components/HomePage';
import VideoPage from 'components/VideoPage';
import './style.scss';
const App = () => (
<div class... |
import React from 'react';
import serialize from 'serialize-javascript';
import filterWithRules from '../../internal/utils/objects/filterWithRules';
import values from '../values';
// Filter the config down to the properties that are allowed to be included
// in the HTML response.
const clientConfig = filterWithRules(... |
define(['Modernizr', 'testAllProps'], function( Modernizr, testAllProps ) {
// The *new* flexbox
// dev.w3.org/csswg/css3-flexbox
Modernizr.addTest('flexbox', testAllProps('flexWrap'));
}); |
import Ember from 'ember';
export default Ember.Component.extend({
wrapper: 'div',
templateName: 'plant'
}); |
var debug = false;
var stopped = true;
var suspend_autostart = false;
var links_socket = null;
var ctrl_socket = null;
var ctrl_queue = null;
var status = '';
var status_sync = '';
var favicon = null;
function getPid()
{
var lock_file = Cc["@mozilla.org/file/directory_service;1"]
.getService(Ci.... |
'use strict'
const path = require('path');
const fs = require('fs');
module.exports = appInfo => {
return {
keys: 'doracms2',
cluster: {
listen: {
port: 18080,
hostname: '',
}
},
session: {
key: 'DORA_SESS',
maxAge: 24 * 3600 * 1000, // 1 day
httpOnly:... |
// The Vue build version to load with the `import` command
// (runtime-only or standalone) has been set in webpack.base.conf with an alias.
import Vue from 'vue';
import App from './App';
import VueResource from 'vue-resource';
import router from './router';
import './assets/less/index.less';
import FastClick from 'fas... |
'use strict';
const _ = require('underscore');
const extend = _.extend;
const utils = require('./utils.js');
const cluster = require('abacus-cluster');
const dbclient = require('abacus-dbclient');
const request = require('abacus-request');
const mappings = require('abacus-plan-mappings');
// Mock the cluster module
... |
AmCharts.AmXYChart=AmCharts.Class({inherits:AmCharts.AmRectangularChart,construct:function(a){this.type="xy";AmCharts.AmXYChart.base.construct.call(this,a);this.cname="AmXYChart";this.theme=a;this.createEvents("zoomed");this.maxZoomFactor=20;AmCharts.applyTheme(this,a,this.cname)},initChart:function(){AmCharts.AmXYChar... |
/// <binding Clean='clean' BeforeBuild='build' AfterBuild='test' ProjectOpened='watch'/>
// The above line of code enables Visual Studio to automatically start Gulp tasks at certain key moments. The 'clean'
// task is run on solution clean, the 'build' task is run on solution build and the 'watch' task is run on openi... |
/**
* Galleria Classic Theme 2012-08-08
* http://galleria.io
*
* Licensed under the MIT license
* https://raw.github.com/aino/galleria/master/LICENSE
*
*/
(function($) {
/*global jQuery, Galleria */
Galleria.addTheme({
name: 'classic',
author: 'Galleria',
css: 'galleria.classic.css',
defaults:... |
/**
* Navigation Bar
* @param {*} children takes the childer of the Navbar element
*/
export function Navbar(props) {
return (
<nav className="navbar">
<ul className="navbar-nav">
{ props.children }
</ul>
</nav>
);
}
/**
* Navigation Title
* @param {*} href set the r... |
let mongoose = require("mongoose");
let db = require("../models");
mongoose.connect("mongodb://localhost/workout", {
useNewUrlParser: true,
useFindAndModify: false,
useCreateIndex: true,
useFindAndModify: false
});
let workoutSeed = [
{
day: new Date(new Date().setDate(new Date().getDate() - 10)),
e... |
import { connect } from 'react-redux'
import { getWallet, isConnecting, isConnected } from 'modules/wallet/selectors'
import {
approveManaRequest,
authorizeLandRequest,
updateDerivationPath,
approveMortgageForManaRequest,
approveMortgageForRCNRequest
} from 'modules/wallet/actions'
import SettingsPage from '... |
// This file was generated by Mendix Studio Pro.
//
// WARNING: Only the following code will be retained when actions are regenerated:
// - the import list
// - the code between BEGIN USER CODE and END USER CODE
// - the code between BEGIN EXTRA CODE and END EXTRA CODE
// Other code you write will be lost the next time... |
import _classCallCheck from 'babel-runtime/helpers/classCallCheck';
import _possibleConstructorReturn from 'babel-runtime/helpers/possibleConstructorReturn';
import _inherits from 'babel-runtime/helpers/inherits';
import React from 'react';
import { Component, PropTypes, Transition, View } from '../../libs';
var typeM... |
import React, {useState} from 'react';
import axios from 'axios';
import {
StyleSheet,
TextInput,
View,
Text,
StatusBar,
ScrollView,
TouchableOpacity,
Platform,
Modal,
Alert,
Pressable,
} from 'react-native';
import colors from '../config/colors';
import * as Animatable from 'react-native-animatab... |
import elementui from '~/global/elements/element-ui';
export default elementui; |
$axure.loadCurrentPage(
(function() {
var _ = function() { var r={},a=arguments; for(var i=0; i<a.length; i+=2) r[a[i]]=a[i+1]; return r; }
return _creator();
})()); |
/* eslint-env jasmine */
import TestHelpers from './test-helpers';
let audioElement;
let wavesurfer;
export function sharedTests(backend) {
let element;
jasmine.DEFAULT_TIMEOUT_INTERVAL = 10000;
beforeEach(function() {
audioElement = TestHelpers.createElement('testAudio', 'audio');
const w... |
import React from 'react';
import { Card, Button } from 'react-bootstrap';
import hero from '../hero.png';
import background from '../background.jpeg';
const Home = ({ people }) => {
const [userSearch, setUserSearch] = React.useState("")
const updateUserSearch = (e) => {
setUserSearch(e.target.value)
}
... |
'use strict';
var _ = require('underscore');
var util = require('util');
var cards = require('./cards.js');
var CardPool = require('./cardpool.js').CardPool;
var Timer = require('./timer.js').Timer;
var games = {};
// should this be in the config?
var INITIAL_WAIT_SECS = 60;
var NOT_ENOUGH_PLAYERS_WAIT_MINS = 2;
var ... |
var callbackArguments = [];
var argument1 = function() {
callbackArguments.push(arguments)
return undefined; };
var argument2 = function() {
callbackArguments.push(arguments)
return undefined; };
var argument3 = false;
var argument4 = function() {
callbackArguments.push(arguments)
return false; };
var argument... |
import { Selector } from 'testcafe';
//import pages from './loginPage';
// const page = new Page();
import registeredUser from './role';
fixture `Getting Started`
.page `https://github.com`
.beforeEach(async t => {})
test('My first test', async t => {
await page
.typeText(page.email,'#emailMobile'... |
/*
5.16~5.23 情暖五月 以爱之名 [gua_opencard150.js]
新增开卡脚本 加密
一次性脚本
1.邀请一人20豆
2.开11张卡 成功开1张 获得10豆
3.加购5京豆
(默认不加购 如需加购请设置环境变量[guaopencard_addSku150]为"true"
第一个账号助力作者 其他依次助力CK1
第一个CK失效会退出脚本
默认脚本不执行
如需执行脚本请设置环境变量
guaopencard150="true"
每个账号之间延迟 100=延迟100秒 0=延迟0秒会使用每3个账号延迟60秒
guaopenwait_All 所有
guaopenwait150="0"
All变量适用
———... |
const routers = [
{
path: '/',
meta: {
title: ''
},
component: (resolve) => require(['./views/index.vue'], resolve)
},
{
path: '/articlePage',
component: (resolve) => require(['./views/articlePage.vue'], resolve)
},
{
path: '/imgListPage',
component: (resolve) => req... |
/*!
PURE Unobtrusive Rendering Engine for HTML
Licensed under the MIT licenses.
More information at: http://www.opensource.org
Copyright (c) 2013 Michael Cvilic - BeeBole.com
Thanks to Rog Peppe for the functional JS jump
revision: 2.81
*/ |
let config = {
port: 3000,
auth: {
client_id: 'steempt.com',
redirect_uri: 'http://localhost:3000/auth/'
},
session: {
secret: 'supersecretsession'
}
};
module.exports = config; |
Vue.config.performance = true;
function _log(logfn, str) {
let d = new Date();
logfn(`${d.getHours()}:${d.getMinutes()}:${d.getSeconds()}.${d.getMilliseconds()} `
+ str);
};
function log(str) {
_log(console.log, str);
};
function err(str) {
_log(console.error, str);
};
function indexVue() {
return... |
$(document).ready(function () {
$(".owl-carousel").owlCarousel({
autoplay: true,
dots: true,
loop: true,
items: 3,
slideBy: 3
});
$('.item').click(function () {
$(this).find('.item-cart').html('<span>W koszyku</span>');
});
}); |
import React from 'react';
import { connect } from 'react-redux';
import UserStats from '../components/UserStats';
import LatestStats from '../components/LatestStats';
import TopAlbums from '../components/TopAlbums';
import { getStats } from '../actions/actions';
class UserComponent extends React.Component {
constru... |
import express from 'express'
const router = express.Router()
import {
getintersection,
} from '../controllers/productController.js'
import { protect } from '../middleware/authMiddleware.js'
router.route('/intersections').post(protect,getintersection)
export default router |
/* -*- Mode: Java; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- /
/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab: */
'use strict';
var NotificationScreen = {
TOASTER_TIMEOUT: 3500,
TRANSITION_FRACTION: 0.30,
TRANSITION_DURATION: 200,
SWIPE_INERTIA: 100,
TAP_THRESHOLD: 10,
S... |
import _ from "lodash";
import determineType from "./determineType";
function findFields(coll, currentKey, first, fields) {
let newFields = fields;
if (!coll) return newFields;
if (Object.keys(coll).length === 0) return newFields;
Object.keys(coll).forEach((field) => {
const data = coll[field];
let n... |
import React from "react";
import { render, fireEvent } from "@testing-library/react";
import axios from "axios";
import Converter from "../../../landing/converter";
it("It changes amount state when input changes", () => {
const spy = jest.fn();
const utils = render(
<Converter
onSubmitAmount={() => {}}... |
import React from 'react';
import { Modal, Toast , Carousel, WhiteSpace, WingBlank, Button } from 'antd-mobile';
//import { Generic } from 'react-simple-chatbot';
import PropTypes from 'prop-types';
import {propertys} from 'userModelView';
import {ListOfMatchOldSalePropertys} from '../listOfMatch/listOfMatchOldSaleProp... |
const TAB_MGR_ICON = 'images/logo/logo_128x128.png'
const NO_TAB_ICON = 'images/default.png'
const WINDOW_ICON = 'images/win.png'
const newNode = (tag, ...args) => {
const elem = document.createElement(tag)
const argIterator = arg => {
if (Array.isArray(arg)) {
arg.forEach(argIterator)
... |
import "@polymer/app-layout/app-header/app-header";
import "@polymer/app-layout/app-toolbar/app-toolbar";
import "@polymer/paper-dropdown-menu/paper-dropdown-menu";
import "@polymer/paper-input/paper-input";
import "@polymer/paper-item/paper-item";
import "@polymer/paper-listbox/paper-listbox";
import { html } from "@p... |
import { combineReducers } from "redux";
import userReducer from "./userReducer";
import profileReducer from "./profileReducer";
import movieReducer from "./movieReducer";
export default combineReducers({
userReducer: userReducer,
profileReducer: profileReducer,
movieReducer: movieReducer
}); |
/**
* Copyright (c) 2014-present, Facebook, Inc. All rights reserved.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
* @flow
*/
'use strict';
import path from 'path';
import {cleanup, extractSummary, writeFiles} from '../Utils';
impo... |
'use strict';
var PgpBuilder = require('pgpbuilder');
var ngModule = angular.module('woEmail');
ngModule.factory('pgpbuilder', function() {
return new PgpBuilder();
}); |
"use strict";
/**
OneLoginHTTPClient
@module OneLoginHTTPClientAdapter
@describe Manages authentication and requests to OneLogin APIs
*/
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolv... |
'use strict';
/* Directives */
angular.module('weatherApp.directives', []).
directive('appVersion', ['version', function(version) {
return function(scope, elm, attrs) {
elm.text(version);
};
}]); |
/*
* Copyright © 2015-2017 Cask Data, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agr... |
import Column from './column.js'
export default {
name: 'VkTableColumnSort',
extends: Column,
props: {
header: {
type: String
},
headerClass: {
type: String
},
// sort by and display data
// use scopedSlots for altering the display
cell: {
type: String
},
cel... |
import CustomTrix from "./Classes/CustomTrix";
import './scss/main.scss'
addEventListener('trix-initialize', (event) => {
new CustomTrix(event);
}); |
"use strict";
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
Object.defineProperty(exports, "__esModule", {
value: true
});
Object.defineProperty(exports, "default", {
enumerable: true,
get: function get() {
return _Stepper.default;
}
});
var _Stepper = _interopRequ... |
<!-- Yandex.Metrika counter -->
<script type="text/javascript">
(function (d, w, c) {
(w[c] = w[c] || []).push(function() {
try {
w.yaCounter17075437 = new Ya.Metrika({id:17075437,
trackLinks:true,
accurateTrackBounce:true});
} catch(e) { }
})... |
var searchData=
[
['task_5fname',['task_name',['../class_c_a_n___msg.html#a1b025430f962cb48e4ff693141d8a91b',1,'CAN_Msg']]],
['time',['time',['../class_c_a_n___msg.html#aa99268ac0aca894a4661e75a969bf245',1,'CAN_Msg']]]
]; |
import {StyleSheet} from 'react-native';
import {getStatusBarHeight} from '../../utils/statusBarHeight';
const styles = StyleSheet.create({
scroll: {
paddingTop: getStatusBarHeight(),
backgroundColor: 'white',
},
userRow: {
alignItems: 'center',
flexDirection: 'row',
paddingBottom: 8,
pad... |
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["about"],{f820:function(t,e,n){"use strict";n.r(e);var a=function(){var t=this,e=t.$createElement;t._self._c;return t._m(0)},s=[function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"about"},[n("h1",[t._v("This is an about page")]... |
const seedData = [
{
vote_count: 8527,
id: 278,
video: false,
vote_average: 8.5,
title: 'The Shawshank Redemption',
popularity: 64.298786,
poster_path: '/9O7gLzmreU0nGkIB6K3BsJbzvNv.jpg',
original_language: 'en',
original_title: 'The Shawshank ... |
var class_ext_1_1_net_1_1_after_record_inserted_event_args =
[
[ "AfterRecordInsertedEventArgs", "d5/d0f/class_ext_1_1_net_1_1_after_record_inserted_event_args.html#a7516ecb913aee678751e798656954b99", null ],
[ "AfterRecordInsertedEventArgs", "d5/d0f/class_ext_1_1_net_1_1_after_record_inserted_event_args.html#a... |
/*
* gruntTest2
* https://github.com/thilina/gruntTest2
*
* Copyright (c) 2016 thilina
* Licensed under the MIT license.
*/
(function($) {
// Collection method.
$.fn.gruntTest2 = function() {
return this.each(function(i) {
// Do something awesome to each selected element.
$(this).html('aweso... |
'use strict';
var _ = require('lodash'),
utils = require('../../../utils'),
driver = utils.getDriver(),
C = driver.constants;
module.exports = function (object, { roomObjects, bulk, gameTime }) {
if (object._cooldown) {
bulk.update(object, {
cooldownTime: gameTime + object._cooldow... |
const { Model } = require('objection')
const Base = require('./base')
class Tag extends Base {
static get tableName() {
return 'tag'
}
static get jsonSchema() {
return {
type: 'object',
required: [ 'name' ],
properties: {
id: { type: 'integer' },
name: { type: 'string'... |
class Particle {
constructor(settings) {
// declare default variables
this.position = new Vec2(0,0)
this.velocity = new Vec2(0,0)
this.shape = new Vec2(0,0)
this.created = Date.now()
this.fadeAway = 0
this.rocket = settings.rocket
this.color = [0,0,0,1]
if(settings.position != un... |
(function webpackUniversalModuleDefinition(root, factory) {
if(typeof exports === 'object' && typeof module === 'object')
module.exports = factory();
else if(typeof define === 'function' && define.amd)
define([], factory);
else if(typeof exports === 'object')
exports["dat.gui.image"] = factory();
else
root[... |
const { useCssModule } = require("vue");
module.exports = {
configureWebpack: {
resolve:{
extensions:[],
alias:{
'assets':'@/assets',
'common':'@/common',
'components':'@/components',
'network':'@/network',
'views':'@/views',
}
}
}
} |
var richText = `
<div id="attentionShow" class="need-attention show-details show-notices-imgs">
<p style="text-indent:2em;">一、节目介绍</p>
<p style="text-indent:2em;">2020“国樂当潮-时空之夜”中西跨界经典室内视听音乐会-海口站</p>
<p style="text-indent:2em;">首场:2020年11月13日/海南省歌舞剧院</p>
<p style="text-indent:2em;">
... |
/* Codded by Phaticusthiccy
Eva, The Phaticusthiccy's Multifunctional Artificial Intelligence
Eva AI has more than 50 Gigabyte dataset which including neural calculator,
wikipedia data, sentiment analysis, Instagram workflow with neural cells.
Thanks for Brainshop.ai for a rest connection with non-ethernet interacti... |
/*!
* Angular Material Design
* https://github.com/angular/material
* @license MIT
* v1.1.0-rc4-master-c81f9f1
*/
(function( window, angular, undefined ){
"use strict";
/**
* @ngdoc module
* @name material.components.tooltip
*/
angular
.module('material.components.tooltip', [ 'material.core' ... |
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
~ Copyright 2019 Adobe
~
~ 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/li... |
define(['aeris/util', 'aeris/maps/layers/googlemaptype'], function(_, GoogleMapType) {
/**
* Representation of Google's Satellite.
*
* @constructor
* @publicApi
* @class aeris.maps.layers.GoogleSatellite
* @extends aeris.maps.layers.GoogleMapType
*/
var GoogleSatellite = function(opt_attrs, opt... |
const path = require("path")
const express = require('express')
const app = express()
const port = process.env.PORT || 3000
let IS_DEV = false
if(process.argv.length > 2){
if(process.argv[2] == "dev"){
IS_DEV = true
console.log("development mode")
}
}
const IS_PROD = !IS_DEV
let stamp = ... |
//# sourceMappingURL=39.be167674.chunk.js.map |
"use strict";
exports.__esModule = true;
var _TwoToneVerticalAlignCenter = require("./TwoToneVerticalAlignCenter");
exports.FilledVerticalAlignCenter = _TwoToneVerticalAlignCenter.TwoToneVerticalAlignCenter; |
exports.replace = function(text , char_to_replace ,char_to_replace_with ){
return text.replace(char_to_replace , char_to_replace_with);
}; |
import topicApi from '@/api/topic'
import {Cell, CellGroup, Row, Col, Icon, Tabbar, TabbarItem, Tag, Toast, Image} from 'vant';
const baseApi = process.env.VUE_APP_BASE_API
export default {
components: {
[Tag.name]: Tag,
[Row.name]: Row,
[Col.name]: Col,
[Icon.name]: Icon,
... |
const getConformance = require("./get-conformance");
const getCollection = require("./get-collection");
const getCollections = require("./get-collections");
const getCollectionItem = require("./get-collection-item");
const getCollectionItems = require("./get-collection-items");
module.exports = {
getConformance,
g... |
'use strict';
// ---------------------------------------------------------------------------
const Exchange = require ('./base/Exchange');
const { AuthenticationError, BadRequest, ExchangeError, NotSupported, PermissionDenied, InvalidNonce, OrderNotFound, InsufficientFunds, InvalidAddress, InvalidOrder, ArgumentsReq... |
app.service("novedadService",['$http', function ($http) {
this.get = function (id) {
var req = $http.get(uri+'/api/novedad/' + id);
return req;
};
this.post = function (novedad) {
var req = $http.post(uri+'/api/novedad',novedad);
return req;
... |
import React, { useState } from 'react';
import PropTypes from 'prop-types';
import clsx from 'clsx';
import { makeStyles, useTheme } from '@material-ui/styles';
import { useMediaQuery } from '@material-ui/core';
import { Sidebar, Topbar } from './components';
const useStyles = makeStyles((theme) => ({
root: {
... |
// Copyright 2007, Google Inc.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// 1. Redistributions of source code must retain the above copyright notice,
// this list of conditions and the following disclai... |
x: while (true) { x: while (true) { } } |
const jwt = require("jsonwebtoken");
module.exports = (req, res, next) => {
const authHeader = req.get("Authorization");
if (!authHeader) {
req.isAuth = false;
return next();
}
const token = authHeader.split(" ")[1];
if (!token || token === "") {
req.isAuth = false;
return next();
}
let... |
/*!
Material Components for the web
Copyright (c) 2017 Google Inc.
License: Apache-2.0
*/ |
/**
* @fileoverview Enforce a clickable non-interactive element has at least 1 keyboard event listener.
* @author open-wc
*/
const ruleExtender = require('eslint-rule-extender');
const { TemplateAnalyzer } = require('eslint-plugin-lit/lib/template-analyzer.js');
const { isIncludedInAOM } = require('../utils/isInclu... |
export function __cargo_web_snippet_882717c1d389fdcf98c1472e06acb1e6c7a69287(Module, $0, $1, $2, $3, $4, $5, $6, $7) { $1 = Module.STDWEB_PRIVATE.to_js($1);$2 = Module.STDWEB_PRIVATE.to_js($2);$3 = Module.STDWEB_PRIVATE.to_js($3);$4 = Module.STDWEB_PRIVATE.to_js($4);$5 = Module.STDWEB_PRIVATE.to_js($5);$6 = Module.STDW... |
/*! UIkit 2.19.0 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ |
(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.toMarkdown = f... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.