text
stringlengths
2
1.04M
module.exports = function (RED) { const i2c = require('i2c-bus'); const INPUT_PORT_REG = 0x0; const OUTPUT_PORT_REG = 0x1; //const POLARITY_INVERSION_REG = 0x2; const CONFIG_REG = 0x3; function setTrue(node) { node.status({ fill: "green", shape: "dot", text: "true" }) } f...
/** * First we will load all of this project's JavaScript dependencies which * includes Vue and other libraries. It is a great starting point when * building robust, powerful web applications using Vue and Laravel. */ require('./bootstrap'); window.Vue = require('vue'); /** * The following block of code may be u...
/* * File: index.js * Project: @vnnox/novaui * Description: 标准数字输入器 * Created: 2018-10-29 11:32 * Author: smohan (mengxw@novastar.tech) * ----- * Last Modified: 2018-10-29 11:32 * Modified By: smohan (mengxw@novastar.tech>) * ----- * Copyright 2018, NovaStar Tech Co., Ltd */ import Events from '../../utils/...
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var tslib_1 = require("tslib"); var React = tslib_1.__importStar(require("react")); var StyledIconBase_1 = require("../../StyledIconBase"); exports.Flag = React.forwardRef(function (props, ref) { var attrs = { "fill": "currentColor...
'use strict' /* https://xmpp.org/rfcs/rfc6120.html#stanzas-error */ const XMPPError = require('@xmpp/error') class StanzaError extends XMPPError { constructor(condition, text, application, type) { super(condition, text, application) this.type = type this.name = 'StanzaError' } static fromElement(e...
var fs = require("fs"); console.log("Going to delete an existing file"); fs.unlink('input.txt', function(err) { if (err) { return console.error(err); } console.log("File deleted successfully!"); });
import React, { Component } from 'react' import { Link } from 'react-router-dom' class ContactUs extends Component{ constructor(props) { super(props); this.state = {value: 'Phone number or email address' }; this.handleChange = this.handleChange.bind(this); this.handleSubmit...
/* 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( 'sourcearea', 'mn', { toolbar: 'Код' } );
import axios from "axios"; import { CART_ADD_ITEM, CART_REMOVE_ITEM, CART_SAVE_SHIPPING_ADDRESS, CART_SAVE_PAYMENT_METHOD, } from "../constants/cartConstants"; export const addToCart = (id, qty) => async (dispatch, getState) => { const { data } = await axios.get(`/api/products/${id}`); dispatch({ typ...
const getController = ({ users }, passport) => { const getLoginForm = (req, res) => { return res.render('login'); }; const login = (...args) => { return passport.authenticate('local-login', { successRedirect: '/', failureRedirect: '/auth/login', failureFl...
const fs = require('fs'); const path = require('path'); const os = require('os'); const logFilepath = path.join(os.tmpdir(), 'ingresses.log'); const ingressLogStream = fs.createWriteStream(logFilepath); const ingressLog = (app, cluster, ingress, createdTime) => { return (status) => { ingressLogStream.write(JSON....
/** PURE_IMPORTS_START .._util_isNumeric,.._Observable,.._scheduler_async PURE_IMPORTS_END */ 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.cre...
/** 审核订单 **/ (function (vc) { var DEFAULT_PAGE = 1; var DEFAULT_ROWS = 10; vc.extends({ data: { allocationStorehouseAuditOrdersInfo: { auditOrders: [], total: 0, records: 1, moreCondition: false, userName: ...
var x: number = StaticOverload.foo(0);
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.JSX = { createElement(name, props, ...content) { props = props || {}; const propsstr = Object.keys(props) .map(key => { const value = props[key]; if (key === "className") ...
/* Highcharts JS v6.1.2 (2018-08-31) Data module (c) 2012-2017 Torstein Honsi License: www.highcharts.com/license */ (function(q){"object"===typeof module&&module.exports?module.exports=q:"function"===typeof define&&define.amd?define(function(){return q}):q(Highcharts)})(function(q){(function(h){h.ajax=function(q...
$(document).ready(function() { $(".CBV_popup_form").on("submit", function() { var input_text = $("#hint_number").val(); doUserCommand(input_text, true); return false; }); });
/** * Controls: Table plugin * * Depends on jWYSIWYG */ (function ( $ ) { "use strict"; if ( undefined === $.wysiwyg ) { throw "wysiwyg.table.js depends on $.wysiwyg"; } if ( !$.wysiwyg.controls ) { $.wysiwyg.controls = {}; } var insertTable = function ( colCount, rowCount, filler ) { if ( isNaN( row...
/** * Copyright 2017 Andrew Thyng * * 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, merge, publish, distribut...
import { MongooseFieldAdapter } from '@keystonejs/adapter-mongoose'; import { KnexFieldAdapter } from '@keystonejs/adapter-knex'; import { PrismaFieldAdapter } from '@keystonejs/adapter-prisma'; import { Implementation } from '@keystonejs/fields'; // eslint-disable-next-line import/no-unresolved import { addRelationshi...
import React from 'react' import { NavPageContainer, TableView, InputSearchBox, ButtonIcon, Accordion } from '../../lib/src' import { Prism as SyntaxHighlighter } from 'react-syntax-highlighter' import { vscDarkPlus } from 'react-syntax-highlighter/dist/esm/styles/prism' import TableData from './data/tablesData.json' i...
import React from 'react'; import logo from './testimg.jpg' import './Main.css' class Main extends React.Component { render() { return ( <div class="row"> <div class="col-sm-4"> <div class="me"> <img src={logo} alt="my"/> </div> ...
import { CONFIG } from "./default.js"; import { _Ckeditor } from "./components/Ckeditor"; Kapseli.plugins.add("ckeditor-kapseli", (app, opts) => { const CONF = { ...CONFIG, ...opts || {} } const Component = app.Component; const add_comp = (el,k) => { app.View.addC...
alert("Alert from Another JS.")
const fs = require("fs"); const readline = require("readline"); const Bot = require("../bot/index.js"); const bot = new Bot(); const rl = readline.createInterface({ input: process.stdin, output: process.stdout }); class CLI { static config = require("./config.json"); static colors = require("./colors...
/** * @license Angular v6.0.7 * (c) 2010-2018 Google, Inc. https://angular.io/ * License: MIT */ import { __assign, __extends, __spread, __values } from 'tslib'; import { Directive, ElementRef, EventEmitter, Host, Inject, Injectable, InjectionToken, Injector, Input, NgModule, Optional, Output, Renderer2, Self, Ski...
import axios from 'axios'; const STATUS = { SUCCESS: 200, CREATED: 201, ACCEPTED: 202, CLIENT_ERROR: 400, AUTHENTICATE: 401, FORBIDDEN: 403, NOT_FOUND: 404, SERVER_ERROR: 500, BAD_GATEWAY: 502, SERVICE_UNAVAILABLE: 503, GATEWAY_TIMEOUT: 504, TIMESTAMP_ERROR: 5001, SIG...
'use strict'; exports.client = require('./client.js'); exports.server = require('./server.js');
const boxen = require('boxen'); const chalk = require('chalk'); const figures = require('figures'); /** * Testing environment */ const environment = { production: false, environment: 'test', port: 4501, origin: 'http://localhost:4200', endPoint: 'http://localhost:4501', database: process.env.MONGODB_URI ...
// from data.js var tableData = data; var tbody = d3.select("tbody"); console.log(tableData); var cities = tableData.map(item => item.city); var cities = new Set(cities); var states = tableData.map(item => item.state); var states = new Set(states); var countries = tableData.map(item => item.country); var countries =...
import { createStore, applyMiddleware } from 'redux'; import thunk from 'redux-thunk'; import reducers from '../client/reducers'; export default () => { const store = createStore(reducers, applyMiddleware(thunk)); return store; };
const path = require('path'); const config = require('./config'); module.exports = { url: config.get('mongo.url'), directory: path.relative('', path.resolve(__dirname, 'migrations')), collection: 'migrations' };
class GoogleCredentialController { constructor(publicKey) { this.publicKey = publicKey || ''; } isCredentialPresent() { if (this.publicKey.length > 0) { return true; } return false; } } export default GoogleCredentialController;
//# sourceMappingURL=hexagon-loader.umd.js.map
console.log('01)', '1' == 1) console.log('02)', '1' === 1) // estritamente igual console.log('03)', '3' != 3) console.log('04)', '3' !== 3) console.log('05)', 3 < 2) console.log('06)', 3 > 2) console.log('07)', 3 <= 2) console.log('08)', 3 >= 2) const d1 = new Date(0) const d2 = new Date(0) console.log('09)', d1 === d...
/** * MerakiDashboardAPILib * * This file was automatically generated by APIMATIC v2.0 ( https://apimatic.io ). */ 'use strict'; const Access6Enum = { /** * TODO: Write general description for this element */ FULL: 'full', /** * TODO: Write general description for this element */...
mycallback( {"_record_type": "fec.version.v7_0.TEXT", "FILER COMMITTEE ID NUMBER": "C00461061", "REC TYPE": "TEXT", "TEXT4000": "Earmarked through ActBlue", "TRANSACTION ID NUMBER": "TIDTA573", "_src_file": "2011/20110504/727407.fec_5.yml", "BACK REFERENCE TRAN ID NUMBER": "IDTA573", "BACK REFERENCE SCHED / FORM NAME":...
console.clear(); console.log("running"); const Redux = require("redux"); const { createClaim, createPolicy, deletePolicy } = require("./actionCreators"); const { policy, accounting, claimHistory } = require("./reducers"); const { combineReducers, createStore } = Redux; const departments = combineReducers({ policy, ...
import React from "react" import { mount, shallow } from "enzyme" import NetworkFrame from "./NetworkFrame" import injectTapEventPlugin from "react-tap-event-plugin" injectTapEventPlugin() const someEdgeData = [ { source: "Heathcliff", target: "Garfield" }, { source: "Fexix", target: "Tom" }, { source: "Bill", t...
chrome.browserAction.onClicked.addListener(() => { chrome.windows.getLastFocused({populate: true}, window => { chrome.tabs.create({url: 'tabPage.html', windowId: window.id}); }); });
define([ 'Core/pointInsideTriangle', 'Core/Cartesian2' ], function( pointInsideTriangle, Cartesian2) { 'use strict'; describe('Core/pointInsideTriangle', function() { it('pointInsideTriangle has point inside', function() { expect(pointInsideTriangle(new Cartesia...
/** * Copyright 2020 The AMP HTML 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 require...
/** * Copyright 2017 aixigo AG * Released under the MIT license. * http://laxarjs.org/license */ import * as logActivity from '../laxar-log-activity'; import { object } from 'laxar'; import { text, ms } from './helper-functions'; import { createAxConfigurationMock, createAxEventBusMock, createAxLogMock } ...
(function() { //strict mode 'use strict'; //global variables var dbug = false; // debug //greensock timelines var _tl = new TimelineLite(); var tl = new TimelineMax({ ease: Power1.easeOut }); var tl1; //selector helper function $(el) { return document.querySelector(el); } //hover effect ...
module.exports = function(api) { api.cache(true); return { presets: [["module:metro-react-native-babel-preset"], ['react-app']], ignore: [ "node_modules/art/core/color.js" ], plugins: [ ["module-resolver", { "alias": { "^react-native$": "react-native-web" } }] ]...
// Copyright 2020 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. import {InlineLoginBrowserProxy} from 'chrome://chrome-signin/inline_login_browser_proxy.js'; import {NativeEventTarget as EventTarget} from 'chrome://res...
(function (factory) { if (typeof module === "object" && typeof module.exports === "object") { var v = factory(require, exports); if (v !== undefined) module.exports = v; } else if (typeof define === "function" && define.amd) { define(["require", "exports"], factory); } })(functio...
// Currently server has nothing special, just continue. import commonRouter from '../common'; export default commonRouter;
/* * @Author: your name * @Date: 2022-01-19 22:25:28 * @LastEditTime: 2022-01-20 16:48:14 * @LastEditors: Please set LastEditors * @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE * @FilePath: \MiMi\src\storage\index.js */ // Storage封装 const STORAGE_KE...
var nextCallback = require('iterator-next-callback'); var createProcessor = require('./lib/createProcessor'); var DEFAULT_CONCURRENCY = 4096; var DEFAULT_LIMIT = Infinity; var MAXIMUM_BATCH = 10; module.exports = function maximizeIterator(iterator, fn, options, callback) { if (typeof fn !== 'function') throw new E...
import http from 'http'; import client from 'prom-client'; import connect from 'connect'; import _ from 'underscore'; import gcStats from 'prometheus-gc-stats'; import { Meteor } from 'meteor/meteor'; import { Facts } from 'meteor/facts-base'; import { Info, getOplogInfo } from '../../../utils/server'; import { getCo...
module.exports='Ruo Bei E Shu Juan Yu Yun Hou Kui Xiang Xiang Sou Tang Ming Xi Ru Chu Zi Zou Ye Wu Xiang Yun Hao Yong Bi Mao Chao Fu Liao Yin Zhuan Hu Qiao Yan Zhang Man Qiao Xu Deng Bi Xun Bi Zeng Wei Zheng Mao Shan Lin Po Dan Meng Ye Cao Kuai Feng Meng Zou Kuang Lian Zan Chan You Ji Yan Chan Cuo Ling Huan Xi Feng Zan...
/* Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license */
const fetchDb = async (path, options) => { const origin = process.env.NODE_ENV === 'development' ? 'http://localhost:8080/' : 'https://amazon-product-price-tracker.herokuapp.com/'; const url = origin + path; const response = await fetch(url, options); const data = await response.json(); return data; }; expor...
/** * Copyright 2020 Progress Software Corporation and/or one of its subsidiaries or affiliates. All rights reserved. * ...
/* Auto-generated by: https://github.com/pmndrs/gltfjsx */ import React, { useRef } from 'react' import { useGLTF } from '@react-three/drei' import { useFrame } from '@react-three/fiber' export default function RustAKModelFinal({ ...props }) { const group = useRef() const { nodes, materials } = useGLTF('/rustAKMo...
'use strict'; var chai = require('chai'); var expect = chai.expect; var should = chai.should(); var bitcore = require('bitcore-lib-vcoin'); var Address = bitcore.Address; var Signature = bitcore.crypto.Signature; var Message = require('../'); describe('Message', function() { var address = 'n1ZCYg9YXtB5XCZazLxSmPD...
import React, { Component } from 'react'; import Widget from '../../consts/index'; import ThemeProvider from '../../theme-provider'; import DateInput from '../triggerPanel/singlePanelTrigger'; export default ThemeProvider( class WeekPicker extends Component { render() { return <DateInput {...this.props} mod...
import global from 'global'; import { logger } from '@storybook/client-logger'; import AnsiToHtml from 'ansi-to-html'; import dedent from 'ts-dedent'; import qs from 'qs'; const { document } = global; const layoutClassMap = { centered: 'sb-main-centered', fullscreen: 'sb-main-fullscreen', padded: 'sb-main-padde...
import FlightSuretyApp from '../../build/contracts/FlightSuretyApp.json'; import Config from './config.json'; import Web3 from 'web3'; export default class Contract { constructor(network, callback) { let config = Config[network]; this.web3 = new Web3(new Web3.providers.HttpProvider(config.url)); ...
function TasksUsers(name, multiple, bSubordinateOnly) { this.name = name; this.multiple = multiple; this.arSelected = []; this.bSubordinateOnly = bSubordinateOnly; this.ajaxUrl = ''; } TasksUsers.arEmployees = {}; TasksUsers.arEmployeesData = {}; TasksUsers.prototype.load = function(sectionID, bShowOnly, bScroll...
'use strict' const gulp = require('gulp') const sigServer = require('./src/signalling-server') let sigS gulp.task('test:browser:before', (done) => { sigS = sigServer.start(15555, (err, info) => { if (err) { throw err } console.log('sig-server started on:', info.uri) done() }) }) gulp.task(...
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.aesCbcDecrypt = exports.aesCbcEncrypt = void 0; const browser_1 = require("../lib/browser"); function aesCbcEncrypt(iv, key, data) { return browser_1.browserAesEncrypt(iv, key, data); } exports.aesCbcEncrypt = aesCbcEncrypt; functi...
var thirukkural1330 = {"couplet1":"அகர முதல எழுத்தெல்லாம் ஆதி \nபகவன் முதற்றே உலகு. 1", "couplet2":"கற்றதனால் ஆய பயனென்கொல் வாலறிவன் \nநற்றாள் தொழாஅர் எனின். 2", "couplet3":"மலர்மிசை ஏகினான் மாணடி சேர்ந்தார் \nநிலமிசை நீடுவாழ் வார். 3", "couplet4":"வேண்டுதல் வேண்டாமை இலானடி சேர்ந்தார்க்கு \nயாண்டும் இடும்பை இல. 4",...
// import React from 'react'; // import { shallow } from 'enzyme'; // import Collect from '../index'; describe('<Collect />', () => { it('Expect to have unit tests specified', () => { expect(true).toEqual(false); }); });
import { BaseJsonService } from '../index.js' export default class JenkinsBase extends BaseJsonService { static auth = { userKey: 'jenkins_user', passKey: 'jenkins_pass', serviceKey: 'jenkins', } async fetch({ url, schema, qs, errorMessages = { 404: 'instance or job not found' }, ...
!function(t,e){for(var n in e)t[n]=e[n]}(window,function(t){var e={};function n(r){if(e[r])return e[r].exports;var o=e[r]={i:r,l:!1,exports:{}};return t[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}return n.m=t,n.c=e,n.d=function(t,e,r){n.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:r})},n.r=function(t){"u...
'use strict' var SirTrevorAdapter = require('./adapter.js'); SirTrevorAdapter.ButtonAdapter = require('./types/button.js'); SirTrevorAdapter.ImageAdapter = require('./types/image.js'); SirTrevorAdapter.ListAdapter = require('./types/list.js'); SirTrevorAdapter.MapAdapter = require('./types/map.js'); SirTrevorAdapter.S...
module.exports = function check(str, bracketsConfig) { let count =0; let count2 =0; let count3 =0; let count4 =0; for ( let i =0; i< str.length;i++) { if (str[i] == '(') { count++ } if (str[i] == ')') { count-- } if (count < 0) { break; } if (str[i] =='[') { coun...
import * as actionTypes from '../constants/store' const initialState = [] export default function store(state = initialState, action) { switch (action.type) { case actionTypes.STORE_UPDATE: return action.data case actionTypes.STORE_ADD: state.unshift(action.data) ...
const path = require('path') const VuetifyLoaderPlugin = require('vuetify-loader/lib/plugin') const VueLoaderPlugin = require('vue-loader/lib/plugin') const CaseSensitivePathsPlugin = require('case-sensitive-paths-webpack-plugin') const clientPath = path.resolve(__dirname, 'src') module.exports = { entry: { 'js...
$(document).ready(function () { function calculate_total() { var total = 0; $("input:checkbox[name='vouchers']:checked").each(function () { total += parseFloat(String($(this).data('price')).replace(/,/g, '')); }); $('#refund-total').text(total.toString().replace(/\B(?=(\...
import React, { Fragment } from 'react'; import { StaticQuery, graphql } from 'gatsby'; import { Heading, Flex, Box, Text } from 'rebass'; import TextLoop from 'react-text-loop'; import { SectionLink } from 'react-scroll-section'; import Section from '../components/Section'; import SocialLink from '../components/Social...
import { test } from 'qunit'; import moduleForAcceptance from '../../tests/helpers/module-for-acceptance'; import page from 'dummy/tests/pages/post-form'; import detailPage from 'dummy/tests/pages/show-post'; moduleForAcceptance('Acceptance | create nested relations'); test('creating a record with nested relations', ...
import request from './config/axios' const baseUrl = '/organization/laborcontract' // 组织架构-员工管理-员工详情-合同管理集合,不分页接口 export const contractList = (personnelId) => ( request({ url: baseUrl + '/list/' + personnelId, method: 'get' }) ) // 组织架构-员工管理-员工详情-员工合同添加接口 export const saveContract = (data) => ( request(...
const path = require(`path`) exports.createPages = async ({ graphql, actions }) => { const { createPage } = actions const result = await graphql(` query { allShopifyProduct(sort: { fields: [title] }) { nodes { id handle } } } `) result.data.allShopifyPr...
/** * Booking breakdown estimation * * Transactions have payment information that can be shown with the * BookingBreakdown component. However, when selecting booking * details, there is no transaction object present and we have to * estimate the breakdown of the transaction without data from the * API. * * If ...
"use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); const child_process_1 = require("child_process"); const debug_1 = __importDefault(require("debug")); con...
const router = require('koa-router')(); const { ciService } = require('alphacarinquiry-commons'); router.get('/aci_api/creditinquiry/latest',async (ctx, next) => { ctx.response.type = 'json'; await ciService.getLatestCreditInquiry(ctx); await next(); }) router.get('/aci_api/creditinquiry/hash/:hash', asy...
/** * Copyright 2016 William Van Woensel 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 ...
var InContextTutorialLogoutPromptDialog=function(t){Dialog.call(this,t,{closeButtonEnabled:!1,maximizeButtonEnabled:!1,dynamicHeight:!1,hideHeader:!0,hideButtons:!0,confirmOnClose:!1})};InContextTutorialLogoutPromptDialog.prototype=Object.create(Dialog.prototype),InContextTutorialLogoutPromptDialog.prototype.constructo...
const express = require('express') const routes = express.Router() const PersonController = require('./src/controllers/PersonController') routes.get('/people', PersonController.index) // DONE routes.get('/people/:id', PersonController.show) // DONE routes.post('/person', PersonController.store) // DONE routes.put('/pe...
var Normalize = require('./Normalize'); var Multiply = require('./Multiply'); /** * [description] * * @function Phaser.Geom.Point.SetMagnitude * @since 3.0.0 * * @param {Phaser.Geom.Point} point - [description] * @param {number} magnitude - [description] * * @return {Phaser.Geom.Point} [description] */ var S...
import { combineReducers } from "redux"; import listLayer from "./listLayer"; import listScene from "./listScene"; import listVideo from "./listVideo"; import listHistory from "./listHistory"; export default combineReducers({ listLayer, listScene, listVideo, listHistory });
import propTypes from 'prop-types'; import React from 'react'; import styled from 'styled-components'; import { H2, LinkDefault, LinkSecondary, Meta, Paragraph, } from '../components/Typography'; const Wrapper = styled.div` display: flex; flex-direction: column; flex-shrink: 0; margin: 0 0 34px; w...
'use strict'; class Point { constructor(x, y) { this.x = x; this.y = y; } } const obj = new Point(10, 20); console.log({ has: { x: Reflect.has(obj, 'x'), y: Reflect.has(obj, 'y'), z: Reflect.has(obj, 'z'), } }); console.log({ in: { x: 'x' in obj, y: 'y' in obj, z: 'z' in obj, } });
import { html } from '../../node_modules/lit-html/lit-html.js'; import { createAlbum } from '../api/data.js'; const createTemplate = (onSubmit) => html` <section class="createPage"> <form @submit=${onSubmit}> <fieldset> <legend>Add Album</legend> <div class="container"> ...
/* * cssCharts v0.1.0 * https://github.com/sultantarimo * * (c)2015 Sultan Tarimo - sultantarimo@me.com * Released under the MIT license */ var thychart = { donut: function(node){ var $chart = $(node); var val = $(node).attr("data-percent"); var title = $(node).attr("data-title"); ...
import React from 'react'; import {action} from '@storybook/addon-actions'; import ResetSuccessDialog from './ResetSuccessDialog'; export default storybook => { storybook .storiesOf('Weblab/dialogs/ResetSuccessDialog', module) .addStoryTable([ { name: 'default', story: () => ( ...
var Missil = cc.Sprite.extend({ alive:true, y:0, ctor:function(){ this._super(); this.initWithFile("assets/missil.png"); this.setPosition(new cc.Point(tela.width/2, tela.height/12 - 5)); cc.AudioEngine.getInstance().setEffectsVolume(0.1); ...
export { default } from 'explorviz-frontend-extension-tutorial/adapters/tutorialtimestamp';
/* ************************************************************************************************ * * * Please read the following tutorial before implementing tasks: * * https://develope...
/*!-------------------------------------------------------- * Copyright (C) Microsoft Corporation. All rights reserved. *--------------------------------------------------------*/ //# sourceMappingURL=https://ticino.blob.core.windows.net/sourcemaps/def9e32467ad6e4f48787d38caf190acbfee5880/vs\languages\less\common\les...
//>>built define("dojox/mobile/ListItem", [ "dojo/_base/array", "dojo/_base/connect", "dojo/_base/declare", "dojo/_base/lang", "dojo/dom-class", "dojo/dom-construct", "dojo/has", "./common", "./_ItemBase", "./TransitionEvent" ], function(array, connect, declare, lang, domClass, domConstruct, has, common, Item...
import Loadable from 'react-loadable'; export default Loadable({ loader: () => import('./ContractdetailPage'), loading: () => false });
const valuesParser = require('postcss-values-parser'); const { strip: stripSlashes } = require('slashes'); const unquote = require('unquote'); const CSS_VALUE_TYPE_REGEXP = /^(word|func|number|string)$/; const NODE_TYPES = { WORD: 'word', FUNCTION: 'func', NUMBER: 'number', STRING: 'string', COMMA: 'comma' }...
import React, { useEffect, useRef, useMemo } from 'react'; import Link from 'next/link'; import PropTypes from 'prop-types'; import ScrollBehaviorContext from './context'; import NextScrollBehavior from './scroll-behavior'; const Provider = ScrollBehaviorContext.Provider; const useDisableNextLinkScroll = (disableNext...
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const fs = require("fs-extra"); const Handlebars = require("handlebars"); const typedoc_1 = require("typedoc"); const events_1 = require("typedoc/dist/lib/output/events"); const theme_1 = require("typedoc/dist/lib/output/theme"); const helpers...
const withPWA = require('next-pwa') const runtimeCaching = require('next-pwa/cache') const path = require('path') module.exports = withPWA({ future: { /** * FIXME * https://github.com/netlify/netlify-plugin-nextjs/issues/209 */ webpack5: process.env.NETLIFY ? false : true, }, target: proc...
let db; const request = indexedDB.open("budget", 1); request.onupgradeneeded = function(event) { const db = event.target.result; db.createObjectStore("pending", { autoIncrement: true }); }; request.onsuccess = function(event) { db = event.target.result; if (navigator.onLine) { checkDatabase(); } }; r...