text stringlengths 2 1.05M |
|---|
/*******************************************************************************
Write a function snakeToCamel(str) that takes in a snake_cased string and returns
the string CamelCased. snake_case is a string where each word is separated with
underscores (_). CamelCase is a string where the first char of each word
is c... |
'use strict';
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.generateData = generateData;
exports.calcTotal = calcTotal;
exports.filterParentPosition = filterParentPosition;
exports.getFilterExpandedKeys = getFilterExpandedKeys;
exports.getRadioSelectKeys = getRadioSelectKeys;
/* eslint no-lo... |
define("StandardViewMatrices", ["./StandardView"], function (e) {
var t = [e.Top, e.Bottom, e.Left, e.Right, e.Front, e.Back, e.Iso, e.RightIso];
return t
})
|
"use strict";
/*
* Created with @iobroker/create-adapter v1.29.1
*/
// The adapter-core module gives you access to the core ioBroker functions
// you need to create an adapter
const utils = require("@iobroker/adapter-core");
// Load your modules here, e.g.:
// const fs = require("fs");
class Homemode extends util... |
//-----------------------------------------------------------------------------
// Imports
//-----------------------------------------------------------------------------
import React from 'react'
import styled from 'styled-components'
import Divider from '../../lib/EditorDivider'
import EditorImage from '../../lib/Ed... |
import React from 'react';
const Component = () => <div>Will be implemented soon</div>;
export default Component; |
document.addEventListener("DOMContentLoaded", function(event) {
var mediaLibraryContainer = document.querySelector('.clodinary-media-library');
var mloptions = JSON.parse(mediaLibraryContainer.dataset.cloudinaryml);
mloptions.inline_container = '.clodinary-media-library';
mloptions.insert_caption = '';
... |
const fs = require("fs");
const path = require("path");
async function callContract(name, method, from, confirmations) {
console.log(`Calling method ${method._method.name} on ${name}`);
const tx = method.send({
/*
* Add a buffer for changes made by transactions that are executed before this ... |
/*!
* Fine Uploader
*
* Copyright 2015, Widen Enterprises, Inc. info@fineuploader.com
*
* Version: 5.1.3
*
* Homepage: http://fineuploader.com
*
* Repository: git://github.com/Widen/fine-uploader.git
*
* Licensed only under the Widen Commercial License (http://fineuploader.com/licensing).
*/
/*globals window, naviga... |
'use strict';
module.exports = function(environment) {
let ENV = {
modulePrefix: 'emberjs-tutorial',
environment,
rootURL: '/',
locationType: 'auto',
EmberENV: {
FEATURES: {
// Here you can enable experimental features on an ember canary build
// e.g. EMBER_NATIVE_DECORATOR... |
const maxVol = client.config.opt.maxVol;
module.exports = {
name: 'volume',
aliases: ['ses'],
utilisation: `{prefix}volume [1-${maxVol}]`,
voiceChannel: true,
execute(client, message, args) {
const queue = player.getQueue(message.guild.id);
if (!queue || !queue.playing) return mes... |
const mongoose = require('mongoose');
const bcrypt = require('bcrypt');
const Schema = mongoose.Schema;
let employeeSchema = new Schema({
employeeId: {
type: Number,
required: true
},
name: {
firstName: String,
lastName: String,
},
username: {
type: String,
... |
// THIS FILE IS AUTO GENERATED
import { GenIcon } from '../lib';
export function DiLinux (props) {
return GenIcon({"tag":"svg","attr":{"version":"1.1","viewBox":"0 0 32 32"},"child":[{"tag":"path","attr":{"d":"M15.534 8.411c0 0.102-0.102 0.102-0.102 0.102h-0.102c-0.102 0-0.102-0.102-0.204-0.204 0 0-0.102-0.102-0.102-... |
macDetailCallback("0050c2ba4000/36",[{"a":"SOCIEDAD DE CONDUENOS 21 ALCALA DE HENARES MADRID ES 28804","o":"CUSTOS MOBILE S.L.","d":"2009-11-29","t":"add","s":"ieee","c":"ES"}]);
|
const data = {
name: "en-CH",
likelySubtags: {
en: "en-Latn-US"
},
identity: {
language: "en",
territory: "CH"
},
territory: "CH",
numbers: {
currencies: {
ADP: {
displayName: "Andorran Peseta",
"displayName-count-on... |
module.exports = {
clone: clone
};
/**
* A simple clone function that also allows you to pass an "extend" object whose properties will be
* added to the cloned copy of the original object passed.
*/
function clone(object, extend) {
const cloned = {};
for (var key in object) {
cloned[key] = ... |
const {Schema, Types} = require('mongoose');
const moment = require('moment');
const reactionSchema = new Schema (
{
reactionBody: {
type: String,
required: true,
trim: true,
maxlength: 280
},
username: {
type: String,
... |
/**
* https://leetcode.com/problems/out-of-boundary-paths/
* @param {number} m
* @param {number} n
* @param {number} maxMove
* @param {number} startRow
* @param {number} startColumn
* @return {number}
*/
var findPaths = function(m, n, maxMove, startRow, startColumn) {
dp = Array(m + 1).fill().map(() => Array(... |
#!/usr/bin/env node
/*
* Web API for creating and combining SSS shares
*
* Author: Daan Sprenkels <hello@dsprenkels.com>
*
* This module contains a proof of concept UI for splitting secrets and
* restoring them afterwards. The respresention of the shares is plain hex.
*
* WARNING! **This code will leak the mes... |
(function () {
$.typeahead({
input: '.weather-station-search',
minLength: 0,
maxItem: 15,
order: "asc",
hint: true,
accent: true,
searchOnFocus: true,
backdrop: {
"background-color": "#3879d9",
"opacity": "0.1",
"filter": "alpha(opacity=10)"
},
display: ["weat... |
import Navbar from './Navbar';
import Home from './Home';
import { BrowserRouter as Router, Route, Switch} from 'react-router-dom'
import Create from './Create';
import BlogDetails from './BlogDetails';
import NotFound from './NotFound';
function App() {
return (
<Router>
<div className="App">
<Navbar... |
(/* istanbul ignore next */ function (global, factory) {
if (typeof define === "function" && define.amd) {
define(['module', 'exports', '../util/context-to-element', '../get/shadow-host'], factory);
} else if (typeof exports !== "undefined") {
factory(module, exports, require('../util/context-to-element'), ... |
import * as action from './index'
describe('login action test', () => {
it('should log user in', () => {
const user = {
email: 'email@email.com',
password: 'test123'
}
const expectedAction = {
user: {
email: 'email@email.com',
password: 'test123'
},
type: 'LOGIN'
}
expect(action.logi... |
'use strict';
/**
* Development environment settings
*
* This file can include shared settings for a development team,
* such as API keys or remote database passwords. If you're using
* a version control solution for your Sails app, this file will
* be committed to your repository unless you add it to your .giti... |
import axios from 'axios';
exports.get = function(courseID) {
return axios.get('/api/compare', {
params: {
id: courseID,
},
});
};
|
// (C) 2009 Alon 'Kripken' Zakai
Library.include('library/1_3/');
Library.include('library/' + Global.LIBRARY_VERSION + '/__CorePatches');
Library.include('library/' + Global.LIBRARY_VERSION + '/Plugins');
Library.include('library/' + Global.LIBRARY_VERSION + '/Firing');
Library.include('library/' + Global.LIBRARY_VE... |
//this script shows the brightness with servo
let phoVal = 0 //photocell value, from 0 to 1023
let serVal = 0 // servo value, from 0 to 180
basic.forever(function () {
phoVal = pins.analogReadPin(AnalogPin.P0)
serVal = pins.map(phoVal, 0, 1023, 0, 180)
pins.servoWritePin(AnalogPin.P1, serVal)
}) |
const db = require("../../db/postgres");
const queries = require("../../db/scripts/queries/queries_book");
const updateBook = async (req, res) => {
const book = new Book(req.body);
const type = req.user.id_contacttype;
book.bookID = req.params.id;
if(type !== 1){
res.sendStatus(403);
}
else{
try{
... |
export { default as useCampaignsTable } from './campaigns'
|
const path = require('path');
const CLIArgs = require('../constants/CLIArgs');
const CompilerOptionKeys = [
CLIArgs.MODULE_RESOLUTION,
CLIArgs.EXPERIMENTAL_DECORATORS,
CLIArgs.SYNTHETIC_IMPORTS,
CLIArgs.TARGET,
CLIArgs.MODULE,
CLIArgs.BASE_URL
];
/**
* Parses CLI args and generates current working direct... |
let response;
exports.lambdaHandler = async (event, context) => {
try {
response = {
'statusCode': 200,
'body': JSON.stringify({
message: JSON.stringify(event).toUpperCase(),
})
}
} catch (err) {
console.log(err);
return err;
... |
var searchData=
[
['bad_5fgateway',['BAD_GATEWAY',['../d0/d58/classscl_1_1http_1_1StatusCode.html#a21837ec6220da7207b37ee92a117f8cd',1,'scl::http::StatusCode']]],
['bad_5frequest',['BAD_REQUEST',['../d0/d58/classscl_1_1http_1_1StatusCode.html#a27df05e65c606ce61544652916d7f9e2',1,'scl::http::StatusCode']]],
['band... |
"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... |
'use strict';
class BaseApi {
static get EMARSYS() { return 'EMARSYS'; }
constructor(transmitter) {
this.transmitter = transmitter;
}
getRandomId() {
return Math.floor(Math.random() * 10000000);
}
exposeMethods(methodList) {
return methodList.reduce((memo, methodName) => {
memo[method... |
{
"type": "FeatureCollection",
"features": [
{ "type": "Feature", "properties": { "Unnamed: 0": 0, "Incident Number": 140580017, "Date": "02\/27\/2014", "Time": "07:40 AM", "Police District": 7.0, "Offense 1": "MOTOR VEHICLE THEFT", "Offense 2": null, "Offense 3": null, "Offense 4": null, "Offense 5": null, "Location":... |
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
//# sourceMappingURL=IParameters.js.map |
/* eslint-disable no-case-declarations */
import axios from 'axios';
// Our global state object just for votes
const initialState = [];
// Reducers, a function that takes an action and produces a new version of state, from a payload and a type.
export default (state = initialState, action) => {
const { typ... |
"use strict";
module.exports = {
up: async (queryInterface, Sequelize) => {
await queryInterface.createTable("Answers", {
id: {
allowNull: false,
autoIncrement: true,
primaryKey: true,
type: Sequelize.INTEGER
},
UserId: {
type: Sequelize.INTEGER,
a... |
$(document).ready(function() {
$("#connect-home").click(function() {
$("#wrap-home").fadeOut(200);
});
//弹出
$(function() {
$("#wrap-home").hide();
$("#connect-home").dblclick(function() {
$("#wrap-home").fadeIn(300);
$("#close_x").click(function() {
... |
function a() {
}
function b() {
}
|
//
// SPDX-FileCopyrightText: 2021 SAP SE or an SAP affiliate company and Gardener contributors
//
// SPDX-License-Identifier: Apache-2.0
//
'use strict'
const _ = require('lodash')
const { UnprocessableEntity, NotFound } = require('http-errors')
const createError = require('http-errors')
const MemberManager = requir... |
/**
* SimpleBar.js - v5.1.0
* Scrollbars, simpler.
* https://grsmto.github.io/simplebar/
*
* Made by Adrien Denat from a fork by Jonathan Nicol
* Under MIT License
*/
import 'core-js/modules/es.array.filter';
import 'core-js/modules/es.array.for-each';
import 'core-js/modules/es.array.iterator';
import 'core-js... |
var CouponEvent = require("./CouponEvent");
var ECommerceEvents = require("./constants").ECommerceEvents;
//class representing coupon removed event
class CouponRemovedEvent extends CouponEvent {
event() {
return ECommerceEvents.COUPON_REMOVED;
}
}
module.exports = {
CouponRemovedEvent: CouponRemovedEvent
};... |
var pageComponent =
webpackJsonppageComponent([22],{
/***/ 324:
/***/ (function(module, exports, __webpack_require__) {
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
var _metalComponent = __webpack_require__(0);
var _metalComponent2 = _interopRequireDefault(_metalComponent);
var ... |
//@ts-check
/**
* @typedef {Function} CollectorFilter
* @param {...*} args
* @returns {boolean|Promise<boolean>}
*/
/**
* @typedef {object} CollectorOptions
* @property {number} max
* @property {number} timeIdle
* @property {number} timeLimit
* @property {CollectorFilter} filter
*/
const BaseCollector = r... |
export { default } from 'nypr-ui/components/nypr-tabs/nypr-tabs-tablist';
|
webpackJsonp([15],{"1MB4":function(e,a,s){"use strict";Object.defineProperty(a,"__esModule",{value:!0});var t=s("O2NY"),n=s.n(t),o={data:function(){return{isActive:"1",openCashData:{money:"",openCashType:"1",selWx:"",name:"",phone:"",wx:""},rules:{money:[{required:!0,message:"请输入提现金额",trigger:"change"}],name:[{required... |
function checkHasOwnProperty(string, object) {
return object.hasOwnProperty(string);
}
module.exports = checkHasOwnProperty;
|
import React from 'react'
import { Button, Input } from 'react-native-elements';
import { SafeAreaView, StyleSheet, Platform, Dimensions, View, StatusBar, TextInput, Text, Picker } from 'react-native'
const { height, width } = Dimensions.get('window')
class Launch extends React.Component {
constructor(props) {
... |
/**
* @class
* @memberof Tiny.spine
*/
class Vector3 {
/**
*
* @param {number} x=0
* @param {number} y=0
* @param {number} z=0
*/
constructor(x = 0, y = 0, z = 0) {
/**
* @type {number}
* @default 0
*/
this.x = x;
/**
* @type {number}
* @default 0
*/
... |
const ConfigurableERC20 = artifacts.require("ConfigurableERC20");
const simple = artifacts.require("simple");
module.exports = function(deployer) {
deployer.deploy(simple)
deployer.deploy(ConfigurableERC20, "0x102e5f644e6ed79ee2a3c221fe16d8711f028952")
};
|
/**@preserve GeneXus Java 10_3_12-110051 on February 13, 2021 7:44:4.1
*
gx.evt.autoSkip=!1;gx.define("ttipopermissao",!1,function(){var n,t,i;this.ServerClass="ttipopermissao";this.PackageName="";this.setObjectType("trn");this.setOnAjaxSessionTimeout("Warn");this.hasEnterEvent=!0;this.skipOnEnter=!1;this.addKeyListen... |
"use strict";function getQL(){return{operationName:"getRepoInfo",query:'\n\tquery getRepoInfo($owner: String = "Tomotoes", $weibo: String = "weibo", $gallery: String = "gallery") {\n\t\trepository(owner: $owner, name: $weibo) {\n\t\t\tissues(filterBy: {createdBy: $owner, states: OPEN}) {\n\t\t\t\ttotalCount\n\t\t\t}\n\... |
import MySQL from 'mysql2/promise'
import { escape, escapeId } from 'mysql2'
import createAdapter from 'resolve-storage-base'
import connect from './connect'
import loadEventsByCursor from './load-events-by-cursor'
import loadEventsByTimestamp from './load-events-by-timestamp'
import getLatestEvent from './get-latest... |
(function(){var e={18332:function(e,t,n){"use strict";n.d(t,{T:function(){return r}});var r="https://apisimarenpkau.bpkp.go.id"},42310:function(e,t,n){"use strict";n(66992),n(88674),n(19601),n(17727);var r=n(49242),a=n(73396);function o(e,t,n,r,o,i){var u=(0,a.up)("router-view");return(0,a.wg)(),(0,a.j4)(u)}n(74916),n(... |
goog.require('ol.Attribution');
goog.require('ol.Map');
goog.require('ol.View');
goog.require('ol.control');
goog.require('ol.layer.Tile');
goog.require('ol.source.OSM');
goog.require('ol.source.XYZ');
|
/* eslint-disable */
const React = require('react')
const Uppy = require('uppy/lib/core')
const Tus10 = require('uppy/lib/plugins/Tus10')
const GoogleDrive = require('uppy/lib/plugins/GoogleDrive')
const { Dashboard, DashboardModal, DragDrop, ProgressBar } = require('uppy/lib/react')
module.exports = class App extends... |
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.cacheActivate = void 0;
const node_fetch_1 = require("node-fetch");
const dbUtil_1 = require("../common/dbUtil");
const functions_1 = require("../common/functions");
const objects_1 = require("../common/objects");
var to_json = require... |
import React, { Component, Fragment } from 'react'
import { Router, view, params, route } from 'react-stax'
import NavBar from './NavBar'
import ProductList from './ProductList'
import ProductEditor from './ProductEditor'
import Login from './Login'
import Notification, { notify } from './Notification'
import appStore,... |
!function(t){var e={};function i(n){if(e[n])return e[n].exports;var r=e[n]={i:n,l:!1,exports:{}};return t[n].call(r.exports,r,r.exports,i),r.l=!0,r.exports}i.m=t,i.c=e,i.d=function(t,e,n){i.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:n})},i.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.d... |
define({
root: ({
serviceUrl: "Set service url:",
minIntSpacingLabel: "Minimum Interval Spacing",
lineOpacityLabel: "Line Opacity",
labelOpacityLabel: "Label Opacity",
centerLabelOpacityLabel: "Center Label Opacity",
gridZonePlacementLabel: "Grid Zone Label Placement",
verticalLineLabels: ... |
import Component from '@ember/component';
import Ember from 'ember';
import { reads } from '@ember/object/computed';
import config from 'travis/config/environment';
import Visibility from 'visibilityjs';
import { inject as service } from '@ember/service';
export default Component.extend({
store: service(),
updateT... |
module.exports = {
root: true,
extends: 'supermind',
rules: {
'import/no-commonjs': 'off',
'import/unambiguous': 'off'
}
}
|
// the contract property is an enumeration
const ChangePropertyPrototype = require('../../properties/changePrototype').ChangePropertyPrototype;
const CONTRACT_TYPE = ['Permanent', 'Temporary', 'Pool/Bank', 'Agency', 'Other'];
exports.WorkerContractProperty = class WorkerContractProperty extends ChangePropertyPrototype... |
import Log from '../../../libraries/Log';
import TagUtils from '../../../utils/TagUtils';
/**
* Manages tags for the TaggingContainer
*/
export default class TagManager {
constructor(context) {
// local tags from tagging container
this.tagsFromTaggingContainer = {};
this.remoteTags = {};
... |
angular.module('chainid.app')
.filter('truncate', function () {
'use strict';
return function (text, length, end) {
if (isNaN(length)) {
length = 10;
}
if (end === undefined) {
end = '...';
}
if (text.length <= length || text.length - end.length <= length) {
retu... |
define({"topics" : [{"title":"Viewing Record Header Attributes","href":"datacollector\/UserGuide\/Processors\/JavaScript.html#concept_zvs_whh_cy","attributes": {"data-id":"concept_zvs_whh_cy",},"menu": {"hasChildren":false,},"tocID":"concept_zvs_whh_cy-d46e71556","topics":[]}]}); |
import React, { Component } from 'react';
import {
ListView,
Alert,
DeviceEventEmitter,
} from 'react-native';
import { Icon } from 'react-native-elements';
import { NavigationActions, StackNavigator } from 'react-navigation';
import Page from '../../components/Page';
import Shares from '../../components/Shares'... |
"use strict";
var KTMenu = function(elementId, options) {
// Main object
var the = this;
var init = false;
// Get element object
var element = KTUtil.get(elementId);
var body = KTUtil.get('body');
if (!element) {
return;
}
// Default options
var defaultOptions = { ... |
var _ = require('lodash');
var async = require('async');
var deep = require('deep-get-set');
module.exports = function(self, options) {
// These properties have special meaning in Apostrophe docs and are not
// acceptable for use as top-level area names
self.forbiddenAreas = [ '_id', 'title', 'slug', 'titleSor... |
"use strict";
const opsgenie = require('../../');
require('../configure');
let delete_incident_json = {
identifier: "cf6de3ed-a789-4941-8bc1-b5eb3b24003a", // should be custom to your created incident
identifierType: "id"
};
opsgenie.incident.delete(delete_incident_json, function (error, user) {
if (erro... |
/*! This file is auto-generated */
this.wp=this.wp||{},this.wp.editWidgets=function(e){var t={};function r(c){if(t[c])return t[c].exports;var n=t[c]={i:c,l:!1,exports:{}};return e[c].call(n.exports,n,n.exports,r),n.l=!0,n.exports}return r.m=e,r.c=t,r.d=function(e,t,c){r.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,... |
"use strict";
const Syntax = require("./Syntax");
/*
after change orders set where
company.id = orders.id_client
*/
class CacheReverseExpression extends Syntax {
parse(coach) {
coach.expectWord("after");
coach.skipSpace();
coach.expectWord("change");
coach.skipSpace();
... |
/* */
var makeString = require("./helper/makeString");
module.exports = function(str, substr) {
str = makeString(str);
substr = makeString(substr);
if (str.length === 0 || substr.length === 0)
return 0;
return str.split(substr).length - 1;
};
|
// @flow
import RNPermissions from 'react-native-permissions'
export type Permission = 'bluetooth' | 'camera' | 'contacts' | 'photos'
export type PermissionStatus = 'authorized' | 'denied' | 'restricted' | 'undetermined'
export const CAMERA = 'camera'
export const BLUETOOTH = 'bluetooth'
export const CONTAC... |
import React from 'react';
import Head from 'next/head';
import PropTypes from 'prop-types';
import dynamic from 'next/dynamic';
const WagtailUserbar = dynamic(() => import('../../components/WagtailUserbar'));
const BasePage = ({ children, seo, wagtailUserbar }) => {
const {
seoHtmlTitle,
seoMetaD... |
import { FontAwesome, Label, React, ResponsiveButton, getLabel } from '../imports';
export const CancelDialog = (confirm, cancel) => ({
title: getLabel('LABEL_CANCEL_CONFIRMATION_TITLE'),
body: <Label label="LABEL_CANCEL_CONFIRMATION" />,
footer: (<div>
<ResponsiveButton
icon={<FontAwesome name=... |
import React, { Component } from 'react'
import { Link } from 'react-router'
import sty from './MenuBar.scss'
import MenuButton from '../../components/MenuButton/MenuButton.js'
export default class MenuBar extends Component {
static propTypes = {
mobileNavIsOpen: React.PropTypes.bool.isRequired,
toggleMenu: ... |
/*!
* Start Bootstrap - Grayscale v3.3.7+1 (http://startbootstrap.com/template-overviews/grayscale)
* Copyright 2013-2016 Start Bootstrap
* Licensed under MIT (https://github.com/BlackrockDigital/startbootstrap/blob/gh-pages/LICENSE)
*/
function collapseNavbar(){$(".navbar").offset().top>50?$(".navbar-fixed-top").a... |
"use strict";
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _react = _interopRequireDefault(require("react"));
var _createSvgIcon = _interopRequireDefault(require("./utils/createSvg... |
import ExpressionLanguages from './ExpressionLanguages';
export default {
__init__: [ 'expressionLanguages' ],
expressionLanguages: [ 'type', ExpressionLanguages ]
}; |
// META: script=/resources/WebIDLParser.js
// META: script=/resources/idlharness.js
// https://w3c.github.io/gamepad/
'use strict';
idl_test(
['gamepad'],
['dom', 'html'],
idl_array => {
idl_array.add_objects({
GamepadEvent: ['new GamepadEvent("gamepad")'],
Navigator: ['navigator']
});
}
... |
import axios from "axios";
import React, { useEffect, useState } from "react";
import { FaChevronDown, FaMarker } from "react-icons/fa";
import ProfilePic from "../../../assest/image/userDone.png";
import ImagePreview from "../../Register/components/ImagePreview";
const UserDeatils = () => {
const [user, setUser] =... |
(function(){
var mio = window.mio = window.mio || {};
mio.util = (function(){
var pub = {};
var loadImageCallbacks = {};
window.d = pub.d = function() {
if (typeof console !== "undefined") {
try {
console.log.apply(this, arguments);
} catch (e) {
if (e.name ==... |
'use strict';
exports.createChangeTracker = createChangeTracker;
function createChangeTracker() {
let modified = false;
return value => modified = modified || !!value;
}
exports.createArrowFunctionExpression = createArrowFunctionExpression;
function createArrowFunctionExpression(j, fn, force_block_statement) {
... |
const getters = {
language: state => state.app.language,
sidebar: state => state.app.sidebar,
device: state => state.app.device,
token: state => state.user.token,
avatar: state => state.user.avatar,
name: state => state.user.name,
roles: state => state.user.roles,
permission_routers: state => state.perm... |
/*!
* OpenUI5
* (c) Copyright 2009-2021 SAP SE or an SAP affiliate company.
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
*/
sap.ui.define(['sap/base/assert','../Device','./Control','./_IconRegistry','./InvisibleText','./library',"./IconRenderer","sap/ui/events/KeyCodes","sap/ui/thirdparty/jqu... |
/* @preserve
* Leaflet Control Geocoder 1.8.3
* https://github.com/perliedman/leaflet-control-geocoder
*
* Copyright (c) 2012 sa3m (https://github.com/sa3m)
* Copyright (c) 2018 Per Liedman
* All rights reserved.
*/
this.L = this.L || {};
this.L.Control = this.L.Control || {};
this.L.Control.Geocoder = (functio... |
// -----------------------------------------------------------------------
// Eros Fratini - eros@recoding.it
// jqprint 0.3
//
// - 19/06/2009 - some new implementations, added Opera support
// - 11/05/2009 - first sketch
//
// Printing plug-in for jQuery, evolution of jPrintArea: http://plugins.jquery.com/pro... |
var Polyline = require('../../../../src/geo/geometry-models/polyline');
var SharedTestsForPathViews = require('./shared-tests-for-path-views');
var createMapView = require('./create-map-view');
var CoordinatesComparator = require('./coordinates-comparator');
module.exports = function (MapView, PathView) {
SharedTest... |
let getCellsFromMetadata = function(nbCells) {
let arrCell = [];
for (let [i, nbCell] of nbCells.entries()) {
if (nbCell.metadata.autorun) {
arrCell.push(i);
}
}
return arrCell;
};
|
import Camera from '../camera/index.js';
import RigidBody from '../physics/rigidbody.js';
import {rotateAroundY} from '../math/index.js';
function Player()
{
this.camera = new Camera(this, 70.0);
this.rigidbody = new RigidBody(this);
this.position = vec3.fromValues(-6.0, -13.0, -10.0);
this.turnAngle = 0.0;
... |
import {
roseColor,
primaryColor,
infoColor,
successColor,
warningColor,
dangerColor
} from "assets/jss/material-kit-react.js";
const navPillsStyle = theme => ({
root: {
marginTop: "20px",
paddingLeft: "0",
marginBottom: "0",
overflow: "visible !important",
lineHeight: "24px",
tex... |
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var tslib_1 = require("tslib");
var crypto_1 = tslib_1.__importDefault(require("crypto"));
var ShopifyErrors = tslib_1.__importStar(require("../error"));
/**
* A timing safe string comparison utility.
*
* @param strA any string, array of st... |
import 'babel-polyfill';
import 'es6-shim';
import 'isomorphic-fetch';
import './containers/Root/StartUp.spec';
|
/**
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @format
* @emails oncall+relay
*/
'use strict';
const GraphQLCompilerContext = require('../../../core/GraphQLCompilerContext'... |
var searchData=
[
['aabb_352',['AABB',['../classmingfx_1_1_a_a_b_b.html',1,'mingfx']]]
];
|
import React from "react"
import {
InputLabel,
FormGroup,
TextField,
Grid,
Select,
MenuItem,
} from "@material-ui/core"
export const getRangeFilterOptions = fieldLabel => {
return {
filter: true,
filterType: "custom",
filterOptions: {
names: [],
logic(value, filters) {
/**... |
import DegreeModule from './DegreeModule';
export default DegreeModule;
export { DegreeModule };
|
//Gestion d'utilisateurs connectés
( function( $ ) {
//-Déclaration de variables globales-
var imageActuelle = 0, btn, link,
domain = 'http://localhost/curl/index.php', //http://curl.vinders.be/index.php
rondChargement = "data:image/gif;base64,R0lGODlhFAAUAPd1AC9UujZav1ZxsENjtTdauICp/4Cq/3+o/3WY4maAtmqGwWmFwH6n/... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.