text stringlengths 2 1.04M |
|---|
// For authoring Nightwatch tests, see
// http://nightwatchjs.org/guide#usage
module.exports = {
'basic': function test(browser) {
// automatically uses dev Server port from /config.index.js
// default: http://localhost:8080
// see nightwatch.conf.js
const devServer = browser.globals.devServerURL;
... |
/*
* @Description:
* @Author:
* @Date: 2020-01-09 18:05:43
*/
/**
ไปปๅกๅ็งฐ๏ผ2868/ๆทปๅ 3ๆๆณจ้
ๅผๅไบบๅ๏ผๆๅปบๆ
ๆฅๆ๏ผ2020-3ๆ-4ๆฅ
ไปปๅก็ฑปๅ๏ผ2ใๅคๅถไฟฎๆนไปฃ็ ๏ผ20่ก๏ผ
**/
import Vue from 'vue'
import Vuex from 'vuex'
import getters from './getters'
import app from './modules/app'
import settings from './modules/settings'
import user from './modules/u... |
const Card = require('../../Card.js');
class Urchin extends Card {
setupCardAbilities(ability) {
this.play({
gameAction: ability.actions.steal()
});
}
}
Urchin.id = 'urchin'; // This is a guess at what the id might be - please check it!!!
module.exports = Urchin; |
var ruleTestBase = require('../rule-test-base');
var rule = require('../../../dist/rules/no-empty-file.js');
var runTest = ruleTestBase.createRuleTest(rule, 'Empty feature files are disallowed');
describe('No Empty Files Rule', function() {
it('doesn\'t raise errors when a feature file isn\'t empty', function() {
... |
let nock = require('nock');
module.exports.hash = "5bf2e604e0628fd3b31f70ada6ce84f6";
module.exports.testInfo = {"uniqueName":{},"newDate":{}}
nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true})
.get('/common/discovery/instance')
.query(true)
.reply(200, {"tenant_discovery_endpoint":"htt... |
/**
* Draws a book for the friendo to hold during a
*/
import { drawOutlinedRect, drawLine } from '../art-util'
export const BOOK_OUTLINE = 'saddlebrown'
export const BOOK_FILL = 'sienna'
export const PAGE_FILL = 'seashell'
export const TEXT_COLOR = 'dimgray'
const BOOK_WIDTH = 21
const BOOK_HEIGHT = 17
const PAGE... |
var config = {};
config.web = {};
config.bot = {};
config.web.port = process.env.WEB_PORT || 8080;
// BOT Config
config.bot.model = process.env.model || 'https://westus.api.cognitive.microsoft.com/luis/v2.0/apps/e98524c2-1a9e-4fbb-b041-e19573c38287?subscription-key=87c29fc48d1c4a4d9ca94ba98e46f66f&verbose=true&q=';
... |
/*
* $Id: om-resizable.js,v 1.7 2012/06/11 01:17:03 linxiaomin Exp $
* operamasks-ui omResizable @VERSION
*
* Copyright 2011, AUTHORS.txt (http://ui.operamasks.org/about)
* Dual licensed under the MIT or LGPL Version 2 licenses.
* http://ui.operamasks.org/license
*
* http://ui.operamasks.org/docs/
*
* Depend... |
'use strict';
var path = require('path');
var EventEmitter = require('events').EventEmitter;
var chalk = require('chalk');
var debounce = require('lodash-node/modern/functions/debounce');
var mapSeries = require('promise-map-series');
var Promise = require('../../ext/promise');
var Tas... |
import { moduleForComponent, test } from 'ember-qunit';
import hbs from 'htmlbars-inline-precompile';
moduleForComponent('expenses-table', 'Integration | Component | expenses table', {
integration: true
});
test('it renders', function (assert) {
// Set any properties with this.set('myProperty', 'value');
// Han... |
const { Controller, syslib } = require('../../../sys');
class WebsocketClientsBrowserCtrl extends Controller {
constructor(app) {
super();
}
async loader(trx) {
this.setTitle('Regoch Websocket Client for Browser');
this.setDescription('Websocket client for Browser platform or browserify. The clie... |
import React, { Component } from 'react';
import { profileRequest } from '../services/api'
class Profile extends Component {
constructor(props) {
super(props);
this.state = {
email: ""
}
}
componentDidMount() {
profileRequest()
.then(res => {
... |
//! moment.js locale configuration
;(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined'
&& typeof require === 'function' ? factory(require('../moment')) :
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
factory(global.mome... |
/*jslint node: true */
/* global suite */
/* global test */
'use strict';
var m = require('../lib/measurement.js'),
should = require('should');
suite('Quantity - format values', function () {
test('simple format without any config', function () {
m(4).format().should.equal('4');
});
test('format precision and... |
import { OrdersTypes } from "../reducers/orders";
import axios from "axios";
export function fetchData(isAuthenticated, userToken) {
return async function thunk(dispatch) {
dispatch({ type: OrdersTypes.FETCH_START });
const { data: { data, error } = {} } =
(await axios
.get("http://localhost:4... |
const path = require('path');
const webpack = require('webpack');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const HtmlWebpackHarddiskPlugin = require('html-webpack-harddisk-plugin');
const CleanWebpackPlugin = require('clean-webpack-plugin');
const FaviconsWebpackPlugin = require('favicons-webpack-plugi... |
import ColorPicker from "./components/ColorPicker";
export default ColorPicker; |
import { createStore, compose, applyMiddleware } from 'redux';
// import { fromJS } from 'immutable';
import createSagaMiddleware from 'redux-saga';
import devTools from 'remote-redux-devtools';
import createReducer from './reducers';
import sagas from '../sagas';
import Settings from '../settings';
import { autoRehydr... |
import { useDialogState } from '@wp-g2/a11y';
import React from 'react';
import {
Button,
Modal,
ModalBody,
ModalFooter,
ModalHeader,
} from '../../index';
import {
Dropdown,
DropdownMenu,
DropdownMenuItem,
DropdownTrigger,
} from '../index';
export default {
component: Dropdown,
title: 'Components/Dropdow... |
define([
"./funcs",
"./defer"
],function(funcs,defer){
function debounce(fn, wait,useAnimationFrame) {
var timeout,
defered,
debounced = function () {
var context = this, args = arguments;
var later = function () {
timeout ... |
/*
* This file is part of nzbget. See <http://nzbget.net>.
*
* Copyright (C) 2012-2016 Andrey Prygunkov <hugbug@users.sourceforge.net>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; ei... |
/**
* @license
* Copyright 2022 The FOAM Authors. All Rights Reserved.
* http://www.apache.org/licenses/LICENSE-2.0
*/
foam.CLASS({
package: 'foam.nanos.alarming',
name: 'CandlestickAlarm',
documentation: `
Generate an Alarm if a Candlestick exceeds some threshold between reporting intervals
`,
pro... |
/**
* Copyright (c) 2014-present, Facebook, Inc. All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*/
const fs = re... |
module.exports={A:{A:{"1":"H D G E A B","16":"mB"},B:{"1":"C L q M O I J K"},C:{"1":"0 1 2 3 4 6 9 s t u v w x y z LB BB CB DB EB FB HB IB JB KB","2":"5 8 jB AB F H D G E A B C L q M O I J P Q R S T U V W X Y Z a b c d f g h i j k l m n o p N r dB cB"},D:{"1":"0 1 2 3 4 5 6 8 9 F H D G E A B C L q M O I J P Q R S T U V... |
/**
* ๅ
ฌๅ
ฑๅไพ
* @com
*/
'use strict';
define(['module'], function (module) {
var objApp = Object.create(null, {
ipUrl: {
value: '',
writable: false,
configurable: false
}
});
(function() {
this.init = function() {
return 'ๅ ่ฝฝๆๅ๏ผ'
};
this.initAjax = function(url, params,... |
// ๅฐ bubbleๆพๅ
ฅ็ฉๅฝขไธญ๏ผ่ไธๆฏๅไธญ
// http://stackoverflow.com/questions/13339615/packing-different-sized-circles-into-rectangle-d3-js
(function() {
var width = 200;
var height = 200;
var padding = 5;
var data = (function() {
var res = {
children: []
};
for (var i = 0; i < 10; i+... |
/*!
* Web Experience Toolkit (WET) / Boรฎte ร outils de l'expรฉrience Web (BOEW)
* wet-boew.github.io/wet-boew/License-en.html / wet-boew.github.io/wet-boew/Licence-fr.html
* v4.0.31 - 2019-06-21
*
*/!function(a,b,c){"use strict";var d="wb-bonjour",e="."+d,f="wb-init"+e,g=c.doc,h={},i=function(f){var g,i,j=c.init(f,... |
//#include include/npc_conversation.js, include/takeable.js
var label = "Chicken Stick";
var version = "1348106634";
var name_single = "Chicken Stick";
var name_plural = "Chicken Sticks";
var article = "a";
var description = "A stick for summoning and containing poultry in a happy feathery cabal. When placed in a hous... |
/* ========================================================================
* DOM-based Routing
* Based on http://goo.gl/EUTi53 by Paul Irish
*
* Only fires on body classes that match. If a body class contains a dash,
* replace the dash with an underscore when adding it to the object below.
*
* .noConflict()
* ... |
"use strict";
var express = require('express'),
bodyParser = require('body-parser'),
fs = require('fs'),
app = express(),
customers = JSON.parse(fs.readFileSync('data/customers.json', 'utf-8')),
states = JSON.parse(fs.readFileSync('data/states.json', 'utf-8')),
inCon... |
import * as utils from '../utils';
import { Expression } from './expression';
export class Binding {
constructor(scope, text, locals) {
this.scope = scope;
this.text = text;
this.locals = locals;
// is true, binding text is a expression
this.isExp = false;
// if true... |
/**
* Copyright (c) 2015-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.
*/
'use strict';
const path = require('path');
const validateBoolOption = (name, value, defaultValue) => {
if (typeof value === 'undefin... |
export function buildItem(
name,
type,
description,
skill,
damage,
injury,
protection,
calledShot,
edge,
twoHandWeapon
) {
console.log(`TOR 1E NPC PARSER | started buildItem() with ${name}`);
const distinctiveFeatureData = {
name: '',
type: 'trait',
img: 'systems/tor1e/assets/images/... |
const reorderFields = (obj, fields) => {
const returnedObject = { ...obj };
fields.forEach((field) => {
const fieldToOrder = returnedObject[field];
if (fieldToOrder) {
delete returnedObject[field];
returnedObject[field] = fieldToOrder;
}
});
return returnedObject;
};
const extractAddi... |
import React, { useState } from 'react';
import { Router } from 'react-router-dom';
import { Provider } from 'react-redux';
import { PersistGate } from 'redux-persist/integration/react';
import { ToastContainer } from 'react-toastify';
import { ThemeProvider } from 'styled-components';
import './config/ReactotronConfi... |
module.exports = {
coverageReporters: ['lcov'],
collectCoverage: true,
collectCoverageFrom: [
'src/**/*.{js,jsx}',
],
transform: {
'^.+\\.jsx?$': '<rootDir>/jest.transform.js',
},
}; |
// @flow
const _ = require('lodash')
const toSequelizeModel = require('./toSequelizeModel.js')
const plugin = require('./plugin')
module.exports = class SequelizeContext {
constructor (sequelize) {
this.sequelize = sequelize
this.plugins = {
singularQuery: plugin.singularQueryPlugin,
pluralQuer... |
const path = require('path');
module.exports = {
resolve: {
alias: {
'@': path.resolve('resources/js'),
},
},
output: {
chunkFilename: 'js/[name].js?id=[chunkhash]',
},
}; |
import RateElement from './element'
customElements.define('shaf-star-rating', RateElement) |
/**
* Itrans tests - util
*
*/
const assert = require('assert');
const fs = require('fs');
const path = require('path');
const constants = require('../src/constants');
const util = require('../src/util');
/* ======================================================================== */
describe('util', () => {
bef... |
import * as React from 'react';
import MarkdownDocs from 'docs/src/modules/components/MarkdownDocs';
import {
demos,
docs,
requireDemo,
} from '!@material-ui/markdown/loader!docs/src/pages/components/button-group/button-group.md';
export default function Page() {
return <MarkdownDocs demos={demos} docs={docs} ... |
const express = require('express');
const path = require('path');
const app = express();
const port = process.env.PORT || 3000;
app.set('port', port);
// ROUTES GO HERE
console.log('In Sever:', process.env.NODE_ENV);
if (process.env.NODE_ENV === 'production') {
app.use(express.static(path.join(__dirname, 'dist'))... |
import atpTree from "./reducer/tree";
import {openAllTreeNodes, openTreeNode, closeAllTreeNodes, closeTreeNode} from "./reducer/tree";
import TreeNode from "./container/tree-node";
const Tree = {
reducers: {
atpTree
}
};
export default Tree;
export {TreeNode, openAllTreeNodes, openTreeNode, closeAllT... |
"use strict";
var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard");
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = exports.styles = void 0;
var _extends2 = _int... |
// @ts-check
import { generateId } from "../DomHelpers/DomHelpers";
const colorSchemes = {
Dark: "(prefers-color-scheme: dark)",
Light: "(prefers-color-scheme: light)",
None: "(prefers-color-scheme: no-preference)",
};
export class ThemeDetector {
static cache = {};
static construct(target) {
const id... |
org.ekstep.contenteditor.basePlugin.extend({
editorState: undefined,
telemetryService: org.ekstep.contenteditor.api.getService(ServiceConstants.TELEMETRY_SERVICE),
lastSaved: undefined,
popUpValues: {},
isSaveNotificationPopupOpened: false,
contentService: org.ekstep.contenteditor.api.getService... |
/*!
* Copyright 2017 Telerik AD
*
* 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 ... |
/* eslint eqeqeq: "off" */
import { getStoreLayout } from "../stores/layout"
import i18n from "i18next"
import { DIALOG_TYPES } from "../stores/layout/utils"
import { getStoreAuth } from "../stores/auth"
import { Capacitor } from '@capacitor/core'
const host = Capacitor.getPlatform() == "web" ? "localhost" : "192.16... |
import expect from 'expect';
export default function(plugin, change) {
const blockStart = change.value.document.getDescendant('anchor');
const withCursor = change.collapseToEndOf(blockStart);
const result = plugin.onKeyDown(
{
key: 'Enter',
shiftKey: true,
preve... |
const {
StringLiteral,
NumberLiteral,
Name,
} = require('../../basic-parser/ast')
const { PrimaryExpr } = require('../../function-parser/ast')
const { Closure } = require('../ast')
const mixin = require('../../../utils/decorator-mixin')
const overridePrimary = mixin({
/*
** " fun " paramlist block | ( "(" ... |
/**
* @module nyc/BasemapHelper
*/
import $ from 'jquery'
/**
* @desc A helper object for creating and manipulating the NYC basemap
* @public
* @mixin
*/
const BasemapHelper = {
/**
* @desc Hook up events
* @public
* @method
* @param {Element} node The DOM node for the map
*/
hookupEvents(nod... |
const education = {
school: "University of Waterloo",
time: {
from: "Sept 2012",
to: "Dec 2016",
},
degree: "Bachelor of Mathmatics",
majors: ["Computer Science", "Combinatorics & Optimization"],
gpa: "3.99",
};
export default education; |
// Container for wordsToPick object (word, picture, song, preview keys & values)
var hangmanGame = {
// Object of all words that can be chosen, along with info such as their picture and a song clip.
wordsToPick: {
genesis: {
picture: "images/genesis.jpg",
song: "Illegal Alien",
pre... |
import express from 'express'
import featuresController from '../controllers/features'
import productsController from '../controllers/products'
const api = express.Router()
api.post('/feature', featuresController.createFeature) // โ
api.get('/features', featuresController.getFeatures) // โ
api.get('/feature/:id', fea... |
/* @flow */
import {
__,
always,
assoc,
concat,
pipe,
prop,
reduce,
set,
lensPath,
flip,
map,
sortBy,
ifElse,
equals,
propSatisfies,
lte,
path,
subtract,
T,
includes,
cond,
nth,
not,
apply,
both,
propEq,
slice,
over,
lensProp,
assocPath,
add,
max,
min,
lens,
juxt,
isNil,
remove,
f... |
import React, { useEffect } from 'react';
import twitterLogo from './assets/twitter-logo.svg';
import './App.css';
// Constants
const TWITTER_HANDLE = '_buildspace';
const TWITTER_LINK = `https://twitter.com/${TWITTER_HANDLE}`;
const App = () => {
/*
* This function holds the logic for deciding if a Phantom Wall... |
import * as helper from './../helpers.js';
import * as dom from './../dom.js';
import {getEditor, registerEditor} from './../editors.js';
import {BaseEditor} from './_baseEditor.js';
import {eventManager as eventManagerObject} from './../eventManager.js';
var
MobileTextEditor = BaseEditor.prototype.extend(),
domDi... |
/***********************************************************************************************************************
nl.js โ Dutch
Localization by: Sjoerd Hekking.
Copyright ยฉ 2021 Thomas Michael Edwards <thomasmedwards@gmail.com>. All rights reserved.
Use of this source code is governed by a BSD 2-clause "S... |
var fs = require("fs");
var ObjectId = M.mongo.ObjectID;
/*
* getUploadPermissions operation
*
* This returns the user permisions to see and use the uploaders for a specific template
*
* */
exports.getUploadPermissions = function (link) {
if (!link.data || !link.data.template) {
return link.send(... |
// Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
es6id: 23.4.3.3
description: Throws TypeError if `this` is not Object.
info: >
WeakSet.prototype.delete ( value )
1. Let S be the this value.
2. If Type(S) is not Object... |
const semver = require('semver')
const execa = require('execa')
const chalk = require('chalk')
const { prompt } = require('enquirer')
const path = require('path')
const fs = require('fs')
const args = require('minimist')(process.argv.slice(2))
const skipTests = args.skipTests || args.st
const skipBuild = args.skipBuil... |
/*! For license information please see main.1bf8c9e4.js.LICENSE.txt */
//# sourceMappingURL=main.1bf8c9e4.js.map |
// ๆฏไป
function pay(obj,order_id,CONTROLLER){
$.ajax({
url: CONTROLLER+'&a=pay',
type: 'POST',
dataType: 'json',
data: {order_id: order_id},
success:function (json){
if(json.status==1){
alert(json.message);
location.reload();
}else{
alert(json.message);
}
}
})
}
// ๅๆถ
function cancel... |
/**
* @author Ben Briggs
* @license MIT
* @module cssnano:preset:default
* @overview
*
* This default preset for cssnano only includes transforms that make no
* assumptions about your CSS other than what is passed in. In previous
* iterations of cssnano, assumptions were made about your CSS which caused
* outp... |
'use strict';
const mongoose = require('mongoose');
require('dotenv').config();
const server = require('./src/server.js');
const port = process.env.PORT;
mongoose.connect(process.env.MONGODB_URI, { useNewUrlParser: true, useUnifiedTopology: true })
.then(() => {
server.start(port);
})
.catch((error) => {
... |
/**
* @license Apache-2.0
*
* Copyright (c) 2018 The Stdlib Authors.
*
* 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 a... |
class Keyframes {
constructor(elem) {
this.elem = elem;
}
isSupported() {
return document.body.style.animationName !== undefined;
}
reset(callback) {
this.removeEvents();
this.elem.style.animationPlayState = 'running';
this.elem.style.animation = 'none';
... |
// ==UserScript==
// @name Wenku8 EPUB Generator
// @namespace http://youmu.moe/
// @version 0.3.0
// @description Export wenku8 lightnovel to epub
// @author Shuhao Tan
// @match http://www.wenku8.com/book/*.htm
// @connect *.wenku8.com
// @connect *.wkcdn.com
// @connect w... |
let Button = 'Button'
export default Button; |
import React, { PureComponent } from 'react';
import { FlatList, Image, View, Text, TouchableWithoutFeedback } from 'react-native';
import Ionicons from 'react-native-vector-icons/Ionicons';
import { connect } from 'react-redux';
import { ifIphoneX } from 'react-native-iphone-x-helper';
import * as _ from 'lodash';
im... |
angular.module('snap', []);
(function() {
'use strict';
var version = [1, 4, 0]
, vObj = {
full: version.join('.'),
major: version[0],
minor: version[1],
patch: version[2]
};
angular.module('snap').constant('SNAP_VERSION', vObj);
}());
angular.module('snap')
.directiv... |
const path = require('path');
const webpack = require('webpack');
module.exports = {
target: "web",
output: {
path: __dirname + '/bundles',
filename: 'pixi.dev.js'
},
entry: [
"./packages/index.js"
],
mode: "development",
devtool: "inline-source-map",
devServer: ... |
"use strict";
fetch("data/profile.json")
.then(function(res){
return res.json();
})
.then(function(data){
console.log(data);
}); |
/**
* Leaflet vector features drag functionality
* @author Alexander Milevski <info@w8r.name>
* @preserve
*/ |
'use strict';
describe('Feature Test:', function(){
var plane;
var airport;
beforeEach(function(){
plane = new Plane();
airport = new Airport();
});
it('planes can be instructed to land at an airport', function(){
plane.land(airport);
expect(airport.planes()).toContain(plane);
});
it('p... |
"use strict";
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Refl... |
import React from 'react';
import styled from 'styled-components';
import { StaticQuery, graphql } from 'gatsby';
import Img from 'gatsby-image';
import { Section, Container } from '@components/global';
import ExternalLink from '@common/ExternalLink';
const LOGOS = [
];
const UsedBy = () => (
<StaticQuery
que... |
/* eslint-env node */
/**
* Copyright 2015, Yahoo! Inc.
* Copyrights licensed under the New BSD License. See the accompanying LICENSE file for terms.
*/
'use strict';
const fs = require('fs');
const path = require('path');
const walkSync = require('walk-sync');
const mergeTrees = require('broccoli-merge-trees');
... |
import assert from 'assert';
export default function(server2){
const requestAuthFail = (user, pass, message) => {
return server2.auth(user, pass)
.status(409)
.body_error(message)
.then(function() {
return server2.whoami();
})
.then(function(username) {
assert.equal(... |
// Load the terrain module and describe tests.
define(
[
"../../terrain"
],
function( terrain ){
// Describe the test suite for this module.
describe(
"The terrain module creates and returns both ground and ligting for the scene.",
function(){
... |
/*
Description:
Not all integers can be represented by JavaScript/TypeScript. It has space to to represent 53bit signed integers. In this Kata, we've to determine if it is safe to use the integer or not. Make use of the latest ES6 features to find this.
SafeInteger(9007199254740990) //true
SafeInteger(-90) //true
Safe... |
const PasswordCellFormatter = ({ getValue }) => (getValue() || "******");
export default PasswordCellFormatter; |
const help = (prefix) => {
return `
ใ *๐๐๐พ๐๐ - ๐๐๐ฝ๐๐* ใ
โค *informaรงรตes*
โค Prefix: ใ ${prefix} ใ
โค Criador : ๐๐ช๐ค๐ฌ๐ป๐ป๐ช๐ฏ ๐๐ฐ๐ฅ
โค ๐๐๐ ๐๐๐๐๐ ๐๐ ๐๐๐ ๐๐๐๐๐ ๐๐ ๐๐๐ https://youtu.be/D58GrbAC1fA
โค Link do meu grupo: https://chat.whatsapp.com/HrXtjnWdN1O72ZDeG0PZH3
โ โโ โฆ โโใโใโโ ... |
var e = require('./e');
console.log(e(2) * 111); |
// Generated by BUCKLESCRIPT, PLEASE EDIT WITH CARE
'use strict';
var Curry = require("bs-platform/lib/js/curry.js");
var Rebase = require("@glennsl/rebase/lib/js/src/Rebase.bs.js");
var $$Promise = require("reason-promise/lib/js/src/js/promise.js");
var Caml_option = require("bs-platform/lib/js/caml_option.js");
var ... |
import { $, createSVG, animateSVG } from './svg_utils';
export default class Arrow {
constructor(gantt, from_task, to_task) {
this.gantt = gantt;
this.from_task = from_task;
this.to_task = to_task;
this.calculate_path();
this.draw();
}
calculate_path() {
le... |
'use strict';
angular.module('dockerswarmUI')
.controller('ContainersCtrl',function(ContainerFactory, $scope){
ContainerFactory.containers().then(function(containers){
$scope.containers=containers.data;
for(var i=0;i<$scope.containers.length;i++){
var d = new Date(0);
d.setUTCSeconds($scope.c... |
'use strict';
/* eslint-disable lodash/prefer-noop */
const { Cookie } = require('tough-cookie');
const cryptoRandomString = require('crypto-random-string');
const test = require('ava');
const sinon = require('sinon');
const request = require('supertest');
const moment = require('moment');
const awsServices = require... |
/*! Amaze UI v2.7.2 ~ IE8 Fucker | by Amaze UI Team | (c) 2016 AllMobilize, Inc. | Licensed under MIT | 2016-12-16T16:25:57+0800 */ |
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _react = _interopRequireDefault(require("react"));
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
var context = /*#__PURE__*/_react.default.createContext({
... |
module.exports = {
title: 'VuePress Blog Example',
description: 'This is a blog example built by VuePress',
theme: require.resolve('../../'),
themeConfig: {
/**
* Ref: https://vuepress-theme-blog.ulivz.com/config/#dateformat
*/
// dateFormat: 'YYYY-MM-DD',
/**
* Ref: https://vuepres... |
/**
* Copyright 2013 Google, Inc. All Rights Reserved.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
/**
* @fileoverview Extension instrumentation script.
* Manually instruments code for producing wtf-calls files.
*
* @author benvanik@google.com (Be... |
deepmacDetailCallback("0050c2979000/36",[{"a":"3 Milagro Lane Noordhoek Western Cape ZA 7975","o":"Far South Networks (Pty) Ltd","d":"2008-10-08","t":"add","s":"ieee","c":"ZA"}]); |
'use strict';
module.exports = function (cb) {
return new Promise(function (resolve) {
resolve(cb());
});
}; |
var searchData=
[
['temperature_5fmax_734',['TEMPERATURE_MAX',['../driver__adxl345_8c.html#a90c0b20d54005712fcc8cb01281360e9',1,'driver_adxl345.c']]],
['temperature_5fmin_735',['TEMPERATURE_MIN',['../driver__adxl345_8c.html#aab353db5bf4eb787f86a2080f609a551',1,'driver_adxl345.c']]]
]; |
var exec = require('cordova/exec');
exports.BLUETOOTH = 'bluetooth';
exports.SPEAKER = 'speaker';
exports.EARPIECE = 'earpiece';
exports.NORMAL = 'normal';
exports.RINGTONE = 'ringtone';
exports.setAudioMode = function (mode) {
cordova.exec(null, null, 'AudioTogglePlugin', 'setAudioMode', [mode]);
};
exports.setBlu... |
parcelRequire=function(e,r,n,t){var i="function"==typeof parcelRequire&&parcelRequire,o="function"==typeof require&&require;function u(n,t){if(!r[n]){if(!e[n]){var f="function"==typeof parcelRequire&&parcelRequire;if(!t&&f)return f(n,!0);if(i)return i(n,!0);if(o&&"string"==typeof n)return o(n);var c=new Error("Cannot f... |
import request from '@/utils/request';
import { func } from 'prop-types';
export async function getUserInfoList(params) {
return request('/sys/getUserInfoList', {
method: 'POST',
body: params,
});
}
export async function addUser(params) {
return request('/sys/addAdministrator', {
method: 'POST',
... |
import JSONFeed from '../../eleventy/feed'
module.exports = class EssaysFeed extends JSONFeed {
collection = 'essays'
title = 'Essays'
} |
var twilio = require('twilio');
var config = require('../config');
var mongoose = require('mongoose');
var bodyParser = require('body-parser');
// Create an authenticated Twilio REST API client
var client = twilio(process.env.TWILIO_ACCOUNT_SID, process.env.TWILIO_AUTH_TOKEN);
// Render a form that will allow the us... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.