text stringlengths 2 1.04M |
|---|
/* eslint-disable */
// rename this file from _test_[name] to test_[name] to activate
// and remove above this line
QUnit.test("test: Tearp Disincentives Register", function (assert) {
let done = assert.async();
// number of asserts
assert.expect(1);
frappe.run_serially([
// insert a new Tearp Disincentives Re... |
/**
* @license Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
*/
/* global document, Event */
import clickOutsideHandler from '../../src/bindings/clickoutsidehandler';
import DomEmitterMixin from '@cked... |
'use strict';
/**
* Module dependencies.
*/
var mongoose = require('mongoose'),
Schema = mongoose.Schema;
/**
* Participant Schema
*/
var ParticipantSchema = new Schema({
name: {
type: String,
default: '',
required: 'Please fill Participant name',
trim: true
},
created: {
type: Date,
default: Date... |
/**
* Creates a Ping instance.
* @returns {Ping}
* @constructor
*/
var Ping = function(opt) {
this.opt = opt || {};
this.favicon = this.opt.favicon || "/favicon.ico";
this.timeout = this.opt.timeout || 0;
this.logError = this.opt.logError || false;
};
/**
* Pings source and triggers a callback whe... |
/*
Terminal Kit
Copyright (c) 2009 - 2021 Cédric Ronvel
The MIT License (MIT)
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
... |
ButtonBase.propTypes = {
component: PropTypes.elementType,
href: PropTypes.string,
variant: PropTypes.string,
}; |
'use strict';
const router = module.exports = require('express').Router();
const store = require('../store');
const { pickBy, size } = require('lodash');
const getGlobalState = (req, res, next) => {
let { worlds, players, food } = store.getState();
let state = {};
state.numWorlds = worlds.length;
state.numPl... |
const router = require("express").Router();
const ProjectMaterialsController = require("../../controllers/ProjectMaterialsController");
module.exports = router; |
import toastr from 'toastr';
Template.visitorEdit.helpers({
visitor() {
return Template.instance().visitor.get();
},
room() {
return Template.instance().room.get();
},
email() {
const visitor = Template.instance().visitor.get();
if (visitor.visitorEmails && visitor.visitorEmails.length > 0) {
return v... |
var JS = (typeof this.JS === 'undefined') ? {} : this.JS;
JS.Date = Date;
(function(factory) {
var $ = (typeof this.global === 'object') ? this.global : this,
E = (typeof exports === 'object');
if (E) {
exports.JS = exports;
JS = exports;
} else {
$.JS = JS;
}
factory($, JS);
})(function(... |
var foo = require('foo'); |
var searchData=
[
['height_24',['height',['../struct_matrix_l_e_d.html#aad908f0bd001f38923951ceae23ae2aa',1,'MatrixLED']]]
]; |
'use strict'
var HAS_OWN = {}.hasOwnProperty
function getClass(arg) {
if (typeof arg === 'string') return arg
var s,
className = ''
if (Array.isArray(arg)) {
for (var k = 0, len = arg.length; k < len; ++k) {
if ((s = arg[k]))
if ((s = getClass(s))) {
if (className) className += ... |
'use strict'
const path = require('path')
const utils = require('./utils')
const config = require('../config')
const vueLoaderConfig = require('./vue-loader.conf')
var webpack = require("webpack")
function resolve (dir) {
return path.join(__dirname, '..', dir)
}
module.exports = {
context: path.resolve(__dirname... |
module.exports = |
(function (angular) {
'use strict';
angular
.module('app')
.directive('extInput', directive);
function directive() {
var directive = {
templateUrl: './components/form/input/input.html',
restrict: 'E',
require: '?^^form',
compile: comp... |
import Map from './Map';
import MapContext from './MapContext';
export default Map;
export { Map, MapContext }; |
/**
* Copyright IBM Corp. 2019, 2020
*
* This source code is licensed under the Apache-2.0 license found in the
* LICENSE file in the root directory of this source tree.
*
* Code generated by @carbon/icon-build-helpers. DO NOT EDIT.
*/
import { _ as _objectWithoutProperties, I as Icon, a as _extends } from '../I... |
/*
* language_data.js
* ~~~~~~~~~~~~~~~~
*
* This script contains the language-specific data used by searchtools.js,
* namely the list of stopwords, stemmer, scorer and splitter.
*
* :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS.
* :license: BSD, see LICENSE for details.
*
*/
var stopwords ... |
'use strict';
function _interopDefault (ex) { return (ex && (typeof ex === 'object') && 'default' in ex) ? ex['default'] : ex; }
var Icon = require('../Icon-deabd942.js');
var React = _interopDefault(require('react'));
require('@carbon/icon-helpers');
require('prop-types');
var MailAll32 =
/*#__PURE__*/
React.forwar... |
// parse-wget (https://www.npmjs.com/package/parse-wget)
// Distributed under the MIT license
// Copyright (C) 2016 Retorillo
const fs = require('fs');
function parseBytes(val) {
return eval(val.replace(/[KMG]$/, (m) => { switch (m) {
case 'K': return '*1024'; case 'M': return '*1024*1024'; case 'G': retu... |
#!/usr/bin/env node
// Native
const qs = require('querystring')
// Packages
const mri = require('mri')
const chalk = require('chalk')
const dateformat = require('dateformat')
const io = require('socket.io-client')
// Utilities
const Now = require('../util')
const { handleError, error } = require('../util/error')
con... |
// @flow
import React from 'react';
import { pure, compose } from 'recompose';
import { Link, withRouter } from 'react-router-dom';
import type { Location } from 'lib/reactRouterUtils';
import { from, cleanProps } from 'lib/reactRouterUtils';
type Props = {
to: string,
location: Location,
}
export const LinkFro... |
var app = angular.module("userCP.routes", ['ui.router']);
/*
* Configurations for states for ui-router. Controllers refer to
* the controllers located in mainctrls.js.
*
*/
app.config(function($stateProvider, $urlRouterProvider) {
$urlRouterProvider
.otherwise('/cp');
$stateProvider
// Default state, s... |
const gulp = require('gulp');
const exec = require('child_process').exec;
const numbers = require("cldr-data/main/en/numbers.json");
const currencies = require("cldr-data/main/en/currencies.json");
const timeZoneNames = require("cldr-data/main/en/timeZoneNames.json");
const calendar = require("cldr-data/main/en/ca-greg... |
'use strict';
var fs = require('fs');
function create (version, options) {
function getFeed (request, response) {
var config = { host: request.headers.host };
response.type('application/atom+xml');
response.render('feed', config);
}
function getRelease (request, response) {
... |
import React from "react";
import {
Typography,
Link
} from "@material-ui/core";
export default function FooterText() {
return (
<Typography variant="body2" color="textSecondary" align="center">
<Link color="inherit" href="">
Decentralised Domain Auth.
</Link>{' '}
... |
import React from 'react';
import Layout from '../../components/Layout';
import NavLink from '../NavLink';
import NavLinkPlaceholder from '../NavLinkPlaceholder';
import '../../assets/less/docs.less';
export default (props) => {
const { children } = props;
return (
<Layout>
<div className="docs-header" ... |
'use strict';
const { describe, it } = require('../helpers/mocha');
const { expect } = require('../helpers/chai');
const runScript = require('../../src/run-script');
const { promisify } = require('util');
const createTmpDir = promisify(require('tmp').dir);
const fs = require('fs-extra');
describe(runScript, function(... |
#!/usr/bin/env node
/* dependencies */
import yargs from 'yargs';
import moment from 'moment';
import fetch from 'node-fetch';
import csv from 'csvtojson';
import Nightmare from 'nightmare';
import path from 'path';
import { enterTime } from './timeBot';
/* env vars and args */
/** @typedef {Object} EnvironmentVaria... |
/*
* Code By Michael Sherif Naguib
* Started September 29, 2018
* Studying @ University of Tulsa
* */
var express = require('express');
var router = express.Router();
const mongoose = require('mongoose');
const schema = require("../../schemas/lookupQuestionsRequestSchema.js");
const questionModelAccess = require(... |
import { BrowserRouter as Router, Route, Switch } from 'react-router-dom';
import './App.css';
import Project1 from './components/projects/Project1';
import Project2 from './components/projects/Project2';
import Project3 from './components/projects/Project3';
import Project4 from './components/projects/Project4';
impor... |
/*!
* Chart.js
* http://chartjs.org/
* Version: 2.7.0
*
* Copyright 2017 Nick Downie
* Released under the MIT license
* https://github.com/chartjs/Chart.js/blob/master/LICENSE.md
*/
(function (f) {
if (typeof exports === "object" && typeof module !== "undefined") {
module.exports = f()
} else if... |
import * as glMatrix from "./common.js";
/**
* 4 Dimensional Vector
* @module vec4
*/
/**
* Creates a new, empty vec4
*
* @returns {vec4} a new 4D vector
*/
export function create() {
let out = new glMatrix.ARRAY_TYPE(4);
out[0] = 0;
out[1] = 0;
out[2] = 0;
out[3] = 0;
return out;
}
/**
* Creates... |
/**
* @overview attendant
*
* @description
* This module is the heart and soul of the entire application. It monitors
* the database for changes to the schedules table and ensures that schedules
* are enacted soon after they are created. A schedule will consist of a
* trigger to crawl the DHIS2 web app followi... |
import React from "react";
import { createMaterialBottomTabNavigator } from "@react-navigation/material-bottom-tabs";
import HomeScreen from "../screens/HomeScreen";
import DonationScreen from "../screens/DonationScreen";
import { Ionicons } from "@expo/vector-icons";
import { HelpStackNavigator } from "./stackNavigato... |
import { delimiter } from 'path'
import { existsSync } from 'fs'
import { print } from 'graphql/language'
import { requireGql, defaultResolve } from './requireGql'
import { missingOptionalDep } from './errorMessages'
let resolve
let seenJSFiles = new Set()
export default ({ types: t, template }) => ({
manipulateOp... |
/******/ (() => { // webpackBootstrap
var __webpack_exports__ = {};
/*!**********************!*\
!*** ./src/index.js ***!
\**********************/
//
//
//
console.log('Linha 4');
/******/ })()
;
//# sourceMappingURL=bundle.js.map |
import edit_button from '../edit_button.html';
import filter_genre_btn from '../filter_genre_btn.html';
export default function (nga, admin) {
var message = admin.getEntity('messages');
message.listView()
.batchActions(['sendmessage', '<my-custom-directive selection="selection"></my-custom-directive>'])
.title... |
'use strict';
Object.defineProperty(exports, '__esModule', {
value: true
});
exports.default = getMaxWorkers;
function _os() {
const data = require('os');
_os = function() {
return data;
};
return data;
}
/**
* Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
*
* This source c... |
'use strict';
exports.__esModule = true;
var _setPrototypeOf = require('babel-runtime/core-js/object/set-prototype-of');
var _setPrototypeOf2 = _interopRequireDefault(_setPrototypeOf);
var _create = require('babel-runtime/core-js/object/create');
var _create2 = _interopRequireDefault(_create);
var _keys = require... |
var verifyCodeKey;
$(function () {
loadVerifyCode();
})
/**
* 检查表单
*/
function checkLoginForm() {
var errorClass = "form-control is-valid";
var formData = $("#loginForm").serializeJson();
if(formData.account == ""){
$("input[name='account']").addClass(errorClass);
} else {
$("inpu... |
//Lerp module for node
var lerp = require('lerp');
//Grid size
var mapSize = 2035;
//Players + Bots IO (input/output)
var players = [];
var botsIO = [];
var food = [];
var foodCount = 100;
var botCount = 5;
//Replacemet for requestAnimationFrame() AKA REPEAT FUNCTION!
setInterval(tick, 30);
//Constrain function
funct... |
const config = {
mongoURL: process.env.MONGO_URL || 'mongodb://localhost:27017/mern-todo-list',
port: process.env.PORT || 8080,
};
export default config; |
var _free_mono_bold_oblique9pt7b_8h =
[
[ "PROGMEM", "_free_mono_bold_oblique9pt7b_8h.html#a5869c418a7ecb3267a81aefc29d474d6", null ]
]; |
var indexSectionsWithContent =
{
0: "cdfimprtuwx",
1: "x",
2: "x",
3: "cdfimprtuw",
4: "x",
5: "x",
6: "x",
7: "p",
8: "x"
};
var indexSectionNames =
{
0: "all",
1: "classes",
2: "functions",
3: "variables",
4: "typedefs",
5: "enums",
6: "enumvalues",
7: "groups",
8: "pages"
};
var... |
/*!
* (C) Ionic http://ionicframework.com - MIT License
* Built with http://stenciljs.com
*/ |
/**
* @fileOverview String Encoding Converter Library for Firefox 3.5 or later
* @author ClearCode Inc.
* @version 1
*
* @license
* The MIT License, Copyright (c) 2010 ClearCode Inc.
* @url https://github.com/clear-code/js-codemodule-encoding
*/
if (typeof window == 'undefined' ||
(window && type... |
import { setTransparencyFor } from '../sticky'
import { shrinkHandleLogo } from './shrink-handle-logo'
import { shrinkHandleMiddleRow } from './shrink-handle-middle-row'
import { getRowInitialHeight } from './shrink-utils'
export const computeShrink = ({
containerInitialHeight,
stickyContainer,
stickyContainerHei... |
import React from 'react'
import PropTypes from 'prop-types'
import { graphql } from 'gatsby'
import Layout from '../components/Layout'
import Features from '../components/Features'
export const ProductPageTemplate = ({
image,
title,
heading,
description,
intro,
main,
fullImage,
pricing,
}) => (
<se... |
goog.provide('fontface.Ruler');
goog.scope(function () {
/**
* @constructor
* @param {string} text
*/
fontface.Ruler = function (text, dom) {
var style = 'max-width:none;' +
'display:inline-block;' +
'position:absolute;' +
'height:100%;' +
... |
import template from './views/RightMenuPropertiesView.html';
import BaseRactive from '../../lib/ractive/BaseRactive';
export default BaseRactive.extend({
template,
isolate : true,
data : function(){
return {
menuItem : []
}
},
onconfig : function(){},
onrender : function(){},
... |
/*
* Copyright (C) 2018 Apple Inc. All rights reserved.
*
* 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 a... |
'use strict';
var _gulp = require('gulp');
var _gulp2 = _interopRequireDefault(_gulp);
var _config = require('../utils/config');
var _path = require('path');
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
if (_config.tasks.watch && 0 < _config.tasks.watch.length) {... |
module.exports = {
argument: {
tooMany: function(expected, actual) {
return 'Too many arguments, expected ' + expected + ' got ' + actual;
},
missingRequired: function(name) {
return 'Argument <' + name + '> is required';
}
},
option: {
notAllowed: function(name) {
var type =... |
/**
* Use this file to configure your truffle project. It's seeded with some
* common settings for different networks and features like migrations,
* compilation and testing. Uncomment the ones you need or modify
* them to suit your project as necessary.
*
* More information about configuration can be found at:
... |
import { Icon } from '@iconify/react';
import { capitalCase } from 'change-case';
import { useState, useEffect } from 'react';
import bellFill from '@iconify/icons-eva/bell-fill';
import shareFill from '@iconify/icons-eva/share-fill';
import roundVpnKey from '@iconify/icons-ic/round-vpn-key';
import roundReceipt from '... |
"use strict";
/**
* Traverser function.
* @param {Object} ast Abstract syntax tree
* @param {Object} visitor Visit each node.
*/
function traverser(ast, visitor) {
// Walk over an array and call `traverseNode()` on each element.
function traverseArray(array, parent) {
array.forEach(child => {
traver... |
/*
* This file is part of the TYPO3 CMS project.
*
* It is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License, either version 2
* of the License, or any later version.
*
* For the full copyright and license information, please read the
* LICENSE.txt file ... |
/* global jest, expect */
import React from 'react'
import { shallow, mount } from 'enzyme'
import { SketchPicker } from 'react-color'
import TextField from './TextField.es6.js'
import { Locked } from '../../Icons.es6.js'
it('should have a `has-feedack` class', () => {
let component
const onUpdate = jest.fn()
... |
// 系统认证相关接口
import request from '@/utils/request'
/**
* 登录
* @param username
* @param password
* @param code
* @param codeKey
*/
export function login(username, password, code, codeKey) {
return request({
url: 'auth/login',
method: 'post',
data: {
username,
password,
code,
... |
'use strict';
angular.module("ngLocale", [], ["$provide", function($provide) {
var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": [
"\u0bae\u0bc1\u0bb1\u0bcd\u0baa\u0b95\u0bb2\u0bcd",
"\u0ba... |
import React from "react";
import { Link, useHistory } from "react-router-dom";
import { Navbar, Form, FormControl, Image } from "react-bootstrap";
import logo from "../yugioh-logo.png"
export default function SiteNavBar() {
const history = useHistory();
const [searchTerm, setSearchTerm] = React.useState("");
co... |
import { html, each, nothing } from 'perlite';
import todos$, { toggleAll } from '../../stores/todos.js';
import { newTodo, todoItem, filters } from './fragments.js';
export const state = {
currentFilter: 'all',
editing: null,
};
export function render(state) {
const numActive = todos$.filter(todo => !todo.com... |
const HttpRequest = require("../HttpRequest");
const Auth = require("../Request/Auth");
const FormInitializeRequest = require("../Request/FormInitializeRequest");
const FormResource = require("./FormResource");
class FormInitialize extends HttpRequest {
async responseHandler(option, request) {
let err = ... |
/* */
"format global";
'use strict';
angular.module("ngLocale", [], ["$provide", function($provide) {
var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
function getDecimals(n) {
n = n + '';
var i = n.indexOf('.');
return (i == -1) ? 0 : n.length - i - 1;
}
f... |
let flock;
function setup() {
createCanvas(640, 360);
createP("Drag the mouse to generate new boids.");
flock = new Flock();
// Add an initial set of boids into the system
for (let i = 0; i < 100; i++) {
let b = new Boid(width / 2, height / 2);
flock.addBoid(b);
}
}
function d... |
/*
Given a string, we'll say that the front is the first 3 chars of the string.
If the string length is less than 3, the front is whatever is there. Return a new string which is 3 copies of the front.
Examples
front3('Java') → JavJavJav
front3('Chocolate') → ChoChoCho
front3('abc') → abcabcabc
*/
functio... |
/**
*
* Board
*
*/
import React from 'react';
import Square from 'components/Square';
import Rank from 'components/Rank';
import Piece from 'components/Piece';
import { chunk } from 'lodash/array';
import { isPiece } from 'gameUtils/pieces';
function Board(props) {
const ranksArray = chunk(props.boardArray.toAr... |
'use strict';
var path = require('path');
var fs = require('fs');
var readFile = fs.readFileSync;
var readDir = fs.readdirSync;
var fileExists = fs.existsSync;
var Package = require('./package');
var readNodeModulesPath = require('./utils/read-node-modules-path');
var buildNodePackagePath = requi... |
import * as Sinon from "../../../../../../../../node_modules/wonder-bs-sinon/lib/es6_global/src/sinon.js";
import * as Js_primitive from "../../../../../../../../node_modules/bs-platform/lib/es6/js_primitive.js";
import * as FakeGlWorkerTool$Wonderjs from "../../../tool/FakeGlWorkerTool.js";
import * as InitBasicMateri... |
var searchData=
[
['feasfrac',['feasFrac',['../classpyscipopt_1_1scip_1_1Model.html#a011e4c09d861e4d27ebd828cf4b60852',1,'pyscipopt::scip::Model']]],
['feastol',['feastol',['../classpyscipopt_1_1scip_1_1Model.html#a60302aa1634dd98be87e04ff158e3ffb',1,'pyscipopt::scip::Model']]],
['ffd',['FFD',['../bpp_8py.html#a5... |
const tab = ` `;
class PgSqlProvider {
constructor(connString) {
this.connString = connString;
}
connection() {
let conn = `const pgp = require('pg-promise')();\n`;
conn += `const connect = {};\n`;
conn += `// WARNING - Properly secure the connection string\n`;
conn += `connect.conn = pgp('... |
import Layout from '../views/layout/Layout'
const warehouse = [{
path: '/warehouse',
component: Layout,
name: 'warehouse',
redirect: '/warehouse/List',
meta: { title: 'procurementWarehouse', icon: 'el-icon-truck', code: '8' },
children: [
{
path: 'totalinventory',
name: 'totalinventory',
... |
/**
* Controls all the styling of the plugin.
*
* AIOSEOP Updates class.
* @author Michael Torbert.
* @author Semper Fi Web Design.
* @copyright https://semperplugins.com
* @version 1.0.0
*/
if ( typeof aiosp_data != 'undefined' ) {
/**
* @since 1.0.0
* @param int $index.
* @param $value
*/
jQuery.ea... |
var pageComponent =
webpackJsonppageComponent([12],{
/***/ 288:
/***/ (function(module, exports, __webpack_require__) {
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
var _metalComponent = __webpack_require__(1);
var _metalComponent2 = _interopRequireDefault(_metalComponent);
var ... |
/*
Copyright (c) 2018 Uber Technologies, Inc.
This source code is licensed under the MIT license found in the
LICENSE file in the root directory of this source tree.
*/
// @flow
import React from 'react';
import {Button, KIND} from '../button/index.js';
import CalendarHeader from './calendar-header.js';
import Month f... |
import React, { useState, useEffect } from 'react';
import { Link as RouterLink, withRouter } from 'react-router-dom';
import PropTypes from 'prop-types';
import validate from 'validate.js';
import { makeStyles } from '@material-ui/styles';
import {
Grid,
Button,
IconButton,
TextField,
Link,
FormHelperText,... |
import { Class } from '../mixin/index';
import { $, extend, isRtl, promise, swap } from '../util/index';
import closeIcon from '../../images/components/close-icon.svg';
import closeLarge from '../../images/components/close-large.svg';
import navbarToggleIcon from '../../images/components/navbar-toggle-icon.svg';
import... |
/* ==========================================================================
Turbolinks
https://github.com/turbolinks/turbolinks
========================================================================= */
import * as Turbolinks from 'turbolinks';
Turbolinks.start(); |
/** @jsx jsx */
import { jsx } from 'theme-ui';
import PropTypes from 'prop-types';
const Widget = ({ children }) => <div sx={{ padding: 2 }}>{children}</div>;
const Container = ({ children, mini = false }) => (
<div
sx={{
backgroundColor: !mini && 'cardBackground',
boxShadow:
!mini &&
... |
import React from "react"
import { Link, useStaticQuery, graphql } from "gatsby"
import "@wordpress/block-library/build-style/style.css"
import "../styles/layout.css"
const Layout = ({ children }) => {
const menu = useStaticQuery(graphql`
query {
wpgraphql {
generalSettings {
title
... |
const test = require('tap').test
const useDb = require('./testdb')
test('table.get', function (t) {
useDb(t, ['user'], function (db, done) {
const user = makeUserTable(db)
user.row.fullname = function fullname() {
return this.first_name + ' ' + this.last_name
}
user.get({ last_name: 'Hannah' ... |
/**
* Copyright (c) 2018-present, xiaoyuzheng
*
* @flow
*/
import React, { PureComponent } from 'react'
import { View, Text, StyleSheet, StatusBar, Image, ListView, TouchableOpacity, ScrollView, RefreshControl, Animated } from 'react-native'
import ScrollableTabView, { ScrollableTabBar } from 'react-native-scrol... |
g_db.quests[2521]={id:2521,name:"^ffffffCorpse Drive",type:0,trigger_policy:0,on_give_up_parent_fail:1,on_success_parent_success:0,can_give_up:1,can_retake:0,can_retake_after_failure:1,on_fail_parent_fail:0,fail_on_death:0,simultaneous_player_limit:0,ai_trigger:0,ai_trigger_enable:0,auto_trigger:0,trigger_on_death:0,re... |
function p2kwiet20606288545877_btnBasicWidTab_onClick_seq0(eventobject) {
return onWidgetCatBtnsClick.call(this, eventobject.id);
} |
// Configure Feathers app. (Can be re-generated.)
const path = require('path');
const compress = require('compression');
const cors = require('cors');
const helmet = require('helmet');
const logger = require('./logger');
// !<DEFAULT> code: favicon_import
const favicon = require('serve-favicon');
// !end
const feathe... |
"use strict";
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true... |
/////////////////////////////////////////////////////////////////////////////////////////////////////
//
// Description : JavaScript Program To Check Whether An Object Contains Given Property
// Function Date : 03 Jan 2021
// Function Author : Prasad Dangare
// Output : true
// : fal... |
import React, { forwardRef } from 'react';
import PropTypes from 'prop-types';
const Kde = forwardRef(function Kde({ color = 'currentColor', size = 24, title = 'KDE', ...others }, ref) {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
width={size}
height={size}
fill={color}
viewBox... |
import {Matrix3} from '../../../math/l3space'
import Vector from '../../../math/vector'
import * as math from '../../../math/math'
import {createShared} from '../../cad-utils'
function Group(derivedFrom) {
this.polygons = [];
this.derivedFrom = derivedFrom;
}
export default function revolve(polygons, axisSegment,... |
/**
* Copyright (c) 2017 Kinvey 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 agreed t... |
'use strict';
const path = require('path');
const coffee = require('coffee');
describe('test/ts.test.js', () => {
const cwd = path.join(__dirname, 'fixtures/ts-app');
describe('normal', () => {
it('should works without error with typescript-eslint', () => {
return coffee.spawn('eslint', [ 'correct.ts' ... |
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
//# sourceMappingURL=jaegar-tracer.interface.js.map |
export const UPDATE_SOMETHING = 'SAMPLE:UPDATE_SOMETHING';
export const updateSomething = (payload) => {
return {
type: UPDATE_SOMETHING,
payload
};
}; |
let validateStat = require('./validateStat.js');
let validateLoot = require('./validateLoot.js');
let valData = require('./validateData.js');
const RequireRegex = /g\.[\w]+/gi;
function isModString(settings, value) {
settings.results.addStat('Val_ModString');
let modTarget = settings.data.lookups.modStrings[v... |
var searchData=
[
['acrobot',['acrobot',['../namespacedrake_1_1examples_1_1acrobot.html',1,'drake::examples::acrobot'],['../namespacedrake_1_1multibody_1_1benchmarks_1_1acrobot.html',1,'drake::multibody::benchmarks::acrobot']]],
['allegro_5fhand',['allegro_hand',['../namespacedrake_1_1examples_1_1allegro__hand.html... |
var twitterAPI = require('node-twitter-api');
var twitter = new twitterAPI({
consumerKey: 'rYh1wRySn0W9WqCFex6wwHtSs',
consumerSecret: 'qpvCHUiLvE3VTrOJk4EA4zQbLeXSUz1hnYSi8jCLf9XfwxZ279',
callback: 'oob'
});
var token = {};
if (process.argv[2] == null || process.argv[3] == null || process.argv[4] == null... |
const electron = require('electron')
const chokidar = require('chokidar')
// Module to control application life.
const app = electron.app
// Module to create native browser window.
const BrowserWindow = electron.BrowserWindow
// Keep a global reference of the window object, if you don't, the window will
// be closed ... |
const express = require("express");
const router = express.Router();
const mongoose = require("mongoose");
require("../models/Usuario");
require("../models/Carrinho");
const Usuario = mongoose.model("usuarios");
const Produto = mongoose.model("produtos");
const Carrinho = mongoose.model("carrinho");
const bcrypt = requ... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.