text
stringlengths
2
1.04M
// File: nordic-nRF51-ble.js evothings.loadScript('libs/evothings/easyble/easyble.js') /** * @namespace * @author Aaron Ardiri * @description Functions for communicating with a Nordic BLE device. * * @example evothings.nRF51_ble.connect( 'nRF51-DK', // BLE name function(device) { console.log('connected!'); ...
webpackJsonp([31],{ /***/ 1822: /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; Object.defineProperty(__webpack_exports__, "__esModule", { value: true }); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "CoreLoginForgottenPasswordPageModule", function() { re...
import React from 'react' import Svg from './Svg' export const SvgLock = ({ size, ...props }) => ( <Svg width={size} height={size} stroke="currentColor" strokeWidth={2} strokeLinecap="round" strokeLinejoin="round" className="lock_svg__feather lock_svg__feather-lock" viewBox="0 0 24 24"...
// Require Users Model const {Users} = require('../models'); // Set up Users Controller const usersController = { // Create a new User createUsers({body}, res) { Users.create(body) .then(dbUsersData => res.json(dbUsersData)) .catch(err => res.status(400).json(err)); }, // ...
import React from 'react'; import PropTypes from 'prop-types'; const Freebsd = props => { const { color, size, ...others } = props; return ( <svg width={size} height={size} fill={color} viewBox="0 0 24 24" {...others}> <path d="M23.725.588c1.273 1.272-2.254 6.862-2.85 7.458-.597.596-2.111.048-3.383-1.224...
'use strict'; var fs = require('fs'); var readChunk = require('read-chunk'); var istextorbinary = require('istextorbinary'); var dateFormat = require('dateformat'); var prettyBytes = require('pretty-bytes'); var Table = require('cli-table'); module.exports = { isBinary: function (existingFilePath, newFileContents) ...
// Fetch all. export const FETCH_MANAGESHOW_ORDERS = 'FETCH_MANAGESHOW_ORDERS'; export const FETCH_MANAGESHOW_ORDERS_PENDING = 'FETCH_MANAGESHOW_ORDERS_PENDING'; export const FETCH_MANAGESHOW_ORDERS_REJECTED = 'FETCH_MANAGESHOW_ORDERS_REJECTED'; export const FETCH_MANAGESHOW_ORDERS_FULFILLED = 'FETCH_MANAGESHOW_ORDERS_...
import React from "react"; import {ListTableCell} from "./ListTableCell"; /** * Container component for TableRow Action Buttons * @param buttons a lits of buttons * @param value an id of the row element * * Calls a SimpleButton component to render each button */ export const ListTableRowButtons = ({buttons, val...
'use strict'; const Writer = require('broccoli-caching-writer'); const lunr = require('lunr'); const striptags = require('striptags'); const Entities = require('html-entities').AllHtmlEntities; const fs = require('fs-extra'); const path = require('path'); const htmlEntities = new Entities(); module.exports = class S...
import React from 'react' //import PropTypes from 'prop-types'; import { Menu, Divider } from 'semantic-ui-react' import { connect } from "react-redux"; import { login } from "../actions" const mapStateToProps = state => { console.log("the state, yo: %j", state); return { i: state.rootReducer.loginInfo }; }; cons...
import HttpService from '../services/http.service'; export const getMerchants = async () => HttpService.get('/admin/merchants'); export const getMerchant = async (id) => HttpService.get(`/admin/merchants/${id}`); export const getMerchantProducts = async (id) => HttpService.get(`/admin/merchants/products/${id}`);
const styles = theme => ({ rowWithOrders: { '& > *': { order: 1, }, }, firstOnMobile: { order: '0', [theme.breakpoints.up('tablet')]: { order: '1', }, }, }); export default styles;
define(function(require) { 'use strict'; var snakeCase = require('snake_case'); test('snake_case', function() { assert.strictEqual(snakeCase('FooBarBaz'), 'foo_bar_baz'); assert.strictEqual(snakeCase('fooBarBaz'), 'foo_bar_baz'); }); });
/** * @param {Object} submenuInfo - submenu info for make template * @param {Locale} locale - Translate text * @param {Function} makeSvgIcon - svg icon generator * @returns {string} */ export default ({locale, makeSvgIcon}) => (` <ul class="tui-image-editor-submenu-item"> <li class="tie-text-effect...
function apiRequest(method, target, data = null) { const url = `https://lamp.cse.fau.edu/~cen4010_s21_g01/api-v1.php${target}` const init = { method, headers: { 'Content-Type': 'application/json', 'Accept': 'application/json', } } if (['POST', 'PUT'...
// This file was automatically generated from template.soy. // Please don't edit this file by hand. /** * @fileoverview Templates in namespace Maze.soy. */ goog.provide('Maze.soy'); goog.require('soy'); goog.require('soydata'); goog.require('BlocklyGames.soy'); Maze.soy.messages = function(opt_data, opt_ignored,...
import React, { Component } from 'react' import logo from './logo.svg' import './Home.css' import { connect } from 'react-redux' import cognitoUtils from '../lib/cognitoUtils' import request from 'request' import appConfig from '../config/app-config.json' const mapStateToProps = state => { return { session: state.se...
import React from 'react'; export default function ChamberRow(props) { // set default property for hiding zeroes (true by default) let hideZero = props.hideZero === null || props.hideZero === undefined ? true : props.hideZero; // generate chamber fields for the passed-in cuts let chambers = props.cuts.map((val...
// Copyright (c) 2017 DavidStrausz // // 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, ...
// @flow weak import React from 'react'; import PropTypes from 'prop-types'; import { withStyles } from 'material-ui/styles'; import Avatar from 'material-ui/Avatar'; import deepOrange from 'material-ui/colors/deepOrange'; import deepPurple from 'material-ui/colors/deepPurple'; const styles = { avatar: { margin...
TAAABS.TaaabsSpare.parser = (function() { /* * Generated by PEG.js 0.8.0. * * http://pegjs.majda.cz/ */ function peg$subclass(child, parent) { function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); } function SyntaxError(message, ...
/** * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you...
/// Copyright (c) 2009 Microsoft Corporation /// /// Redistribution and use in source and binary forms, with or without modification, are permitted provided /// that the following conditions are met: /// * Redistributions of source code must retain the above copyright notice, this list of conditions and /// ...
import React, { PureComponent } from 'react'; import PropTypes from 'prop-types'; import classnames from 'classnames'; import Image from '../Image'; import PhotoShape from '../../shapes/PhotoShape'; import { forbidExtraProps, nonNegativeInteger, } from '../../common/prop-types'; import noop from '../../utils/noo...
var modules = [ [ "syn6288 driver function", "group__syn6288__driver.html", "group__syn6288__driver" ] ];
class A { } class B extends A { } var Generics; (function(Generics) { class A1 { } class B extends A1 { } class B3 extends A1 { } })(Generics || (Generics = { }));
'use strict' const util = require('util'); const jobModel = require('../modules/jobSetup'); const pageHelper = require('../helper/pager'); const auth = require('../helper/auth_admin'); const silly = require("silly-datetime"); const routes = (app) => { //招聘管理首页 app.get('/joblist', auth, (req, res, next) => { ...
// Copyright 2009 the Sputnik authors. All rights reserved. /** * Operator x | y returns ToNumber(x) | ToNumber(y) * * @path ch11/11.10/11.10.3/S11.10.3_A3_T1.2.js * @description Type(x) and Type(y) vary between primitive number and Number object */ //CHECK#1 if ((1 | 1) !== 1) { $ERROR('#1: (1 | 1) === 1. Act...
(function (program, execJS) { execJS(program) })(function (module, exports, console) { #{source} }, function (program) { var output, print = function (string) { process.stdout.write('' + string); }; try { result = program(); if (typeof result == 'undefined' && result !== null) { ...
/* * The MIT License (MIT) * * Copyright (c) 2019 Racoon-UI, Inc. * * 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 u...
/** * Swagger Petstore * This is a sample Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). * * OpenAPI spec version: 1.0.0 * Contact: apiteam@swagger.io * * NOTE: This class is auto generated by the swa...
"use strict"; const stream = require('stream'); const util = require('util'); const Readable = stream.Readable; /** Readable memory stream * **/ function RMStream(string, options) { // allow use without new operator if (!(this instanceof RMStream)) { return new RMStream(key, string, options); } Readable....
const express = require('express') const { handleResponse, successResponse } = require('../../apiHelpers') const { healthCheck } = require('./healthCheckComponentService') const { serviceRegistry } = require('../../serviceRegistry') const router = express.Router() // Controllers /** * Controller for `health_check` ...
/** * MATCHMORE ALPS Core REST API * * OpenAPI spec version: 0.5.0 * Contact: support@matchmore.com * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. */ "use strict"; /** * A device might be eith...
/** * Database Service * * Manages database connections */ const { Pool } = require('pg'); const config = require.main.require('./config'); const pool = new Pool(config.database); // Catch pool errors pool.on('error', (err) => { console.error('Unexpected error on idle client', err); }); module.exports = pool;
/* [JS Index] --- Template Name: Kingex - Creative Portfolio Template Author: ex-nihilo Version: 1.0 */ /* 1. preloader 2. slick slider 2.1. slick fullscreen slideshow ZOOM/FADE 3. fullPage 4. YouTube player 5. owl carousel slider 5.1. owl graphic design and illustration carousel sl...
// image-changer.js // Copyright © 2018-2020 NextStep IT Training. All rights reserved. // $(document).ready( () => { let images = [] let imageSelected = -1; function loadimages() { for (name of [ 'anguilla', 'antigua', 'barbados', 'cartagena', 'curaco', 'dominica', 'jamaica', 'martinique', 'st-...
$(document).ready(function() { function drawCharts() { $('[data-chart-id]').each(function() { drawChart(this); }); } function drawChart(chartElement) { var options = $(chartElement).data('chart-options'); var chartId = $(chartElement).data('chart-id'); var chartType = $(chartElement).d...
function load_domains(){$.when(fetch_html("api/domains")).then(function(){$("#domain").hide(),$("#domain_cards").fadeIn()})}function add_domain(){var n=$("#add_domain").val();$("#add_domain").val(""),$.ajax({type:"POST",url:"api/domain/"+n,statusCode:{201:function(){fetch_domain(n)}}})}function enable_domain(n,t){$.aja...
// Helper: root() is defined at the bottom var path = require('path'); var webpack = require('webpack'); // Webpack Plugins var CommonsChunkPlugin = webpack.optimize.CommonsChunkPlugin; var autoprefixer = require('autoprefixer'); var HtmlWebpackPlugin = require('html-webpack-plugin'); var ExtractTextPlugin = require('...
import {request} from "./request" export function getDetail(iid) { return request({ url:'/detail', params:{ iid } }) } export class Goods{ constructor(itemInfo,columns,services) { this.title = itemInfo.title this.desc = itemInfo.desc this.newPrice = itemInfo.price this.oldPrice = it...
import React from 'react'; import { storiesOf } from '@storybook/react'; import { withReadme } from 'storybook-readme'; import { boolean, text, withKnobs } from '@storybook/addon-knobs'; import { Button, IconButton, PageHeader, svgs, } from 'src'; import readme from 'components/page-header/README.md'; import { ...
const { ElasticsearchClient } = require('./ElasticsearchClient'); /** * Action method. * @param {object} req - The flow request context passed in at runtime. The * parameters are resolved as `req.params` and the available authorization * credentials are passed in as `req.authorizations`. * @param {object} outpu...
import Auth from "./AuthReducer"; import { combineReducers } from "redux"; import Eventdata from "./EventReducer"; import CreateEventForm from "./CreateEventFormReducer"; const allreducers = combineReducers({ Auth: Auth, Eventdata: Eventdata, CreateEventForm: CreateEventForm, }); export default allreducers;
import test from 'tape-catch'; import {testLayerAsync} from '@deck.gl/test-utils'; import {makeSpy} from '@probe.gl/test-utils'; import {CartoLayer, API_VERSIONS, MAP_TYPES} from '@deck.gl/carto'; import {MVTLayer} from '@deck.gl/geo-layers'; import {GeoJsonLayer} from '@deck.gl/layers'; import {mockFetchMapsV2, mockFe...
jQuery(document).ready(function($) { jQuery( "#pro_features_section a.addons-button-solid" ).click(function(e) { var imgtg = jQuery(this).attr('href').split('#'); imgtg = jQuery('.'+imgtg[1]+'_png').attr('src'); var plan_id = ''; if(jQuery(this).attr('href') == "#starter"){ var plan_ids = 2847; v...
function fidoAuth(req, res, next) { if (!req.user.fidoAuth) return res.status(401).send("Access denied."); console.log(req.user.fidoAuth); next(); } module.exports = fidoAuth;
const { execSync } = require('child_process'); const { outputFileSync } = require('fs-extra'); const { get } = require('lodash'); module.exports = (lambdaPath, selectFromJSONOutput, saveToFile) => { // mock contract a.k.a. init path const mockContractPath = (() => { const paths = lambdaPath.split('/');...
(() => { class BroadcastService { constructor($rootScope, $timeout) { this.$rootScope = $rootScope; this.$timeout = $timeout; } cast(event, param, timeout = 0) { this.setParam(param); this.$timeout(() => { this.$rootScope.$broadcast(event); }, timeout); } c...
define( //begin v1.x content { "decimalFormat": "#,##0.###", "group": " ", "scientificFormat": "#E0", "percentFormat": "#,##0%", "currencyFormat": "¤#,##0.00", "decimal": "," } //end v1.x content );
/* * zzllrr Mather * zzllrr@gmail * Released under MIT License */ wiki['Formula/Function/Derivative']=Kx( detail(gM('Indefinite Integral & Derivative')+ksc('∫f→f→f\''),Table([['∫f(省略常数项)','函数f','1阶导数f\'','2阶导数f″','n阶导数f^{(n)}']],[ ZLR('a∫f ± b∫g____af ± bg____af\' ± bg\'____af″ ± bg″____af^{(n...
/* * @lc app=leetcode id=138 lang=javascript * * [138] Copy List with Random Pointer */ // @lc code=start /** * // Definition for a Node. * function Node(val, next, random) { * this.val = val; * this.next = next; * this.random = random; * }; */ /** * @param {Node} head * @return {Node} */ var c...
/* Copyright 2019 Gravitational, 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 to in writing, soft...
export { isatty } from 'os';
/* * © Copyright IBM Corp. 2013 * * 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 ...
/** Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"...
function createDayLightNamespace() { // intialize configuration var dayLightConfig = parseQuery(window.location.search.substr(1)); var platform = "HTML-Javascript|sdk v1.2.5|"; function setConfig(str) { dayLightConfig = parseQuery(str); dayLight.dayLightConfig = dayLightConfig; ...
/******/ (function(modules) { // webpackBootstrap /******/ // The module cache /******/ var installedModules = {}; /******/ /******/ // The require function /******/ function __webpack_require__(moduleId) { /******/ /******/ // Check if module is in cache /******/ if(installedModules[moduleId]) { /******/ re...
// Copyright (c) 2012 Ecma International. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- es5id: 15.2.3.14-2-3 description: Object.keys returns the standard built-in Array (Array overridden) ---*/ function Array() {} var o = { x: 1, y: 2 }; var a = Object.keys(...
// to be removed after clean up// (function () { var injectParams = ['$resource', '$q']; var AuthenticationService = function ($resource, $q) { var auth = { loginUser: function (username, password) { var deferred = $q.defer(); //Simulate an async API call setTimeout(function()...
import React, { Component } from 'react'; import ChatSummaryCard from '../Chat-summary-card/chat-summary-card'; import './chat-summary-widget.scss'; export default class ChatSummaryWidget extends Component { render() { return ( <div className="mt-4"> <ChatSummaryCard unread="2...
class C { } class D { } (E1 = E11 || (E11 = { }))[E1.one = 0] = "one", (E2 = E21 || (E21 = { }))[E2.one = 0] = "one"; var E1, E2, E11, E21, classCDATuple = [ new C(), new D() ]; classCDATuple[2], classCDATuple[5], new C(), new C(), new D(), t4[2] = 10;
var searchData= [ ['bgr_129',['BGR',['../LP50XX_8h.html#a4748d6a5b957c2214edd098c043a5726a4a19a93c929964c201e01c8352dc8b9c',1,'LP50XX.h']]], ['brg_130',['BRG',['../LP50XX_8h.html#a4748d6a5b957c2214edd098c043a5726aa23d02d9d56089f1419a6c2eee27d16f',1,'LP50XX.h']]], ['broadcast_131',['Broadcast',['../LP50XX_8h.html#...
/** * Copyright 2015 Google Inc. 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 required by appli...
/** * @param {Object} context * @param {import('jscodeshift').JSCodeshift} context.j * @param {ReturnType<import('jscodeshift').Core>} context.root */ module.exports = function createAppMount(context) { const { j, root } = context // Vue.nextTick(() => {}) const nextTickCalls = root.find(j.CallExpression, n ...
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const FileNameBuilder_1 = require("./FileNameBuilder"); class FirstLineFileNameBuilder extends FileNameBuilder_1.FileNameBuilder { buildFilename(lines) { // use firstline let filename = ""; for (var index in lines) ...
// This file was procedurally generated from the following sources: // - src/computed-property-names/computed-property-name-from-yield-expression.case // - src/computed-property-names/evaluation/object-literal.template /*--- description: Computed property name from yield expression (ComputedPropertyName in ObjectLitera...
import type { Path } from '../jsutils/Path'; import type { PromiseOrValue } from '../jsutils/PromiseOrValue'; import type { ObjMap, ReadOnlyObjMap, ReadOnlyObjMapLike, } from '../jsutils/ObjMap'; import { inspect } from '../jsutils/inspect'; import { keyMap } from '../jsutils/keyMap'; import { mapValue } from '.....
CRUMINA.StickySidebar=function(){var i=$("#site-header");$(".crumina-sticky-sidebar").each(function(){new StickySidebar(this,{topSpacing:i.height(),bottomSpacing:0,containerSelector:!1,innerWrapperSelector:".sidebar__inner",resizeSensor:!0,stickyClass:"is-affixed",minWidth:0})})},$(document).ready(function(){CRUMINA.St...
import '@babel/polyfill' import React from 'react' import ReactDOM from 'react-dom' import configureStore from './store' import { Provider } from 'react-redux' import {createBrowserHistory} from 'history' import { ConnectedRouter } from 'connected-react-router' import { AppContainer } from 'react-hot-loader' import Ap...
/*! * Generated using the Bootstrap Customizer (https://getbootstrap.com/docs/3.4/customize/) * Config saved to config/bootstrap.config.json */ /*! * Bootstrap v3.4.1 (https://getbootstrap.com/) * Copyright 2011-2019 Twitter, Inc. * Licensed under the MIT license */ if (typeof jQuery === 'undefined') { thro...
import React from "react"; import PropTypes from "prop-types"; import { Modal } from "../modal/Modal"; import { Button } from "../input/Button"; import { ReactComponent as MicrophoneIcon } from "../icons/Microphone.svg"; import styles from "./MicPermissionsModal.scss"; import { BackButton } from "../input/BackButton"; ...
set_global('$', global.make_zjquery()); set_global('page_params', { realm_users: [], user_id: 999, }); set_global('ui', { set_up_scrollbar: function () {}, }); set_global('feature_flags', {}); set_global('document', { hasFocus: function () { return true; }, }); set_global('blueslip', fu...
import React from "react"; import "./Rules.css"; const Rules = props => <h1 className="rules">{props.children}</h1>; export default Rules;
const mongoose = require('mongoose'); const autopopulate = require('mongoose-autopopulate'); const Schema = mongoose.Schema; // schema const bookingSchema = new Schema({ trainId: { type: mongoose.Schema.Types.ObjectId, ref: 'trains', }, passengerIds: [{ passenger: { type: mongoose.Schema.Types...
/* * @Copyright (c) 2018 缪聪(mcg-helper@qq.com) * * 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 requir...
const changeCase = require('change-case'); const Enums = require('./enums'); const Utils = require('./utils'); const { FUNCTIONS, NATIVE_FUNCTIONS } = Enums; const { isValidObject, hasSpecialChars } = Utils; /** * Factory method which transforms all object fields based on functionName string * * @param {Object} ob...
'use strict'; const {chain} = require('lodash'); const starRegEx = new RegExp('\\*', 'g'); const colonRegEx = new RegExp('\:', 'g'); function inferCanName(routeConfig, routePath) { const verb = chain(routePath).split(' ').first().toLower().value(); // if we have controller and action use them return routeConfig...
/** * Auto-generated trigger file for "Mailchimp Marketing API" API. * * Generated at: 2022-01-05T12:34:40.155Z * Mass generator version: 1.0.0 * * : mailchimp-newcomp * Copyright © 2020, AG * * All files of this connector are licensed under the Apache 2.0 License. For details * see the file LICENSE on the t...
'use strict' angular.module('spBlogger.admin.services', []).factory('Post',['$resource','API_ENDPOINT',function($resource,API_ENDPOINT){ return $resource(API_ENDPOINT, { id: '@_id' }, { update: { method: 'PUT' } }); }]).service('popupService',['$window',function($window){ this.s...
import { storiesOf } from '@storybook/vue'; import { Editor } from '../src/main/ts/components/Editor'; const apiKey = 'qagffr3pkuv17a8on1afax661irst1hbr4e6tbv888sz91jc'; const content = ` <h2 style="text-align: center;"> TinyMCE provides a <span style="text-decoration: underline;">full-featured</span> rich text edi...
/** * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /*jshint browser:true*/ define([ "jquery", "jquery/ui" ], function($){ "use strict"; $.widget('mage.floatingHeader', { options: { placeholderAttrs: { '...
(function($){ $(function(){ $('.button-collapse').sideNav(); $('nav#top-nav').pushpin({ top: $('nav#top-nav').offset().top }); }); // end of document ready })(jQuery); // end of jQuery name space
/* * Paper.js - The Swiss Army Knife of Vector Graphics Scripting. * http://paperjs.org/ * * Copyright (c) 2011 - 2014, Juerg Lehni & Jonathan Puckey * http://scratchdisk.com/ & http://jonathanpuckey.com/ * * Distributed under the MIT license. See LICENSE file for details. * * All rights reserved. */ /** * ...
export default GitHubCalendar(".calendar", "IonicaBizau", { responsive: true, });
const gaana_config = ({ BACKEND_URL: "https://gannabot.herokuapp.com" /* Don't give the last '/' (Slash) */ })
/** * @license * Copyright Google Inc. All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ const TAG_TO_PLACEHOLDER_NAMES = { 'A': 'LINK', 'B': 'BOLD_TEXT', 'BR': 'LINE_BREAK', 'EM': 'EMPHASIS...
/** * @ag-grid-community/core - Advanced Data Grid / Data Table supporting Javascript / React / AngularJS / Web Components * @version v22.0.0 * @link http://www.ag-grid.com/ ' * @license MIT */ /** * @ag-grid-community/core - Advanced Data Grid / Data Table supporting Javascript / React / AngularJS / Web Component...
mycallback( {"CONTRIBUTOR OCCUPATION": "", "CONTRIBUTION AMOUNT (F3L Bundled)": "125.00", "ELECTION CODE": "", "MEMO CODE": "", "CONTRIBUTOR EMPLOYER": "", "DONOR CANDIDATE STATE": "", "CONTRIBUTOR STREET 1": "95 E Highway St", "CONTRIBUTOR MIDDLE NAME": "", "DONOR CANDIDATE FEC ID": "", "DONOR CANDIDATE MIDDLE NAME": ...
const express = require('express'); const router = express.Router(); const task_controller = require('../controllers/task.controller'); router.get('/', task_controller.get_tasks); router.post('/add', task_controller.add_task); router.put('/:id/update/:points', task_controller.update_task); router.get('/:owner/:from/:t...
/** * @externs * @suppress {duplicate,checkTypes} */ // NOTE: generated by tsickle, do not edit. // externs from test_files/jsx/jsx.tsx: /** @const */ var JSX = {}; /** * @record * @struct */ JSX.Element = function() {}; /** * @record * @struct */ JSX.IntrinsicElements = function() {}; /** @type {?} */ JSX.In...
/** * SEO component that queries for data with * Gatsby's useStaticQuery React hook * * See: https://www.gatsbyjs.org/docs/use-static-query/ */ /* <script type="application/ld+json"> { "@context": "http://schema.org", "@type": "Organization", "name": "Opinta Solutions Pvt. Ltd.", "image": "https://sulcdn.azu...
"use strict"; exports.__esModule = true; var tslib_1 = require("tslib"); tslib_1.__exportStar(require("../__internal__/cjs-src/icons/IconTie/IconTie"), exports);
var webpack = require("../../../../"); module.exports = [ { name: "hash with length in publicPath", output: { publicPath: "/[fullhash:6]/", filename: "bundle0.[fullhash:6].js", chunkFilename: "[id].bundle0.[fullhash:6].js" }, amd: { expectedFilenameLength: 17, expectedChunkFilenameLength: 19 }...
import { LitElement } from 'lit-element/lit-element.js'; /** * A component to represent a possible value that can be selected for a dimension set (the main filter dimension type). * This component does not render anything, but instead gathers data needed for the d2l-filter. * @fires d2l-filter-dimension-set-value-d...
const languages = require("../languages/language-meta.json").map((l) => l.moment).filter((l) => l !== "en"); languages.forEach((l) => { require(`moment/locale/${l}.js`); }); module.exports = { /** * Gets message prefix * @param {object} message The Discord message * @returns The prefix */ getPr...
var thingy = (function(){ var a = 42; var b = 23; var c = 84; var d = 13; var e = 90; var f = 34; var g = 52; return { foo: function() { return a + b + c + d + e + f + g; }, bar: function() { a = 1; b = 2; c = 3; ...
import Cookies from 'js-cookie' const TokenKey = 'Admin-Token' const UserIDKey = 'Cultidate-User-Id' export function getToken() { return Cookies.get(TokenKey) } export function setToken(token) { return Cookies.set(TokenKey, token) } export function removeToken() { return Cookies.remove(TokenKey) } export fun...
const answerUrl = baseUrl+'questions/answers'; document.addEventListener("DOMContentLoaded", function(){ fetch(baseUrl+'questions/recent').then(response => { return response.json(); }).then(data => { // Work with JSON data here console.log(data); findDom('loading').style.v...
/**! * @license FusionCharts JavaScript Library * Copyright FusionCharts, Inc. * License Information at <http://www.fusioncharts.com/license> * * @author FusionCharts, Inc. * @meta package_map_pack * @id fusionmaps.Bagoue.1.12-13-2018 06:19:23