commit stringlengths 40 40 | old_file stringlengths 4 264 | new_file stringlengths 4 264 | old_contents stringlengths 0 3.26k | new_contents stringlengths 1 4.43k | subject stringlengths 15 624 | message stringlengths 15 4.7k | lang stringclasses 3
values | license stringclasses 13
values | repos stringlengths 5 91.5k |
|---|---|---|---|---|---|---|---|---|---|
14d808a9e369fc38fff1975ea0e6225b788b12d9 | client/app/serializers/cabin.js | client/app/serializers/cabin.js | import DS from 'ember-data';
import ApplicationSerializer from '../serializers/application';
export default ApplicationSerializer.extend({
normalize: function (modelClass, resourceHash, prop) {
var normalizedHash = resourceHash;
var normalizedFasiliteter = [];
// Maps `fasiliteter` object to an array o... | import DS from 'ember-data';
import ApplicationSerializer from '../serializers/application';
export default ApplicationSerializer.extend({
normalize: function (modelClass, resourceHash, prop) {
var normalizedHash = resourceHash;
var normalizedFasiliteter = [];
// Maps `fasiliteter` object to an array o... | Update tilrettelagt_for array with types from tilrettelegginger on save | Update tilrettelagt_for array with types from tilrettelegginger on save
| JavaScript | mit | Turistforeningen/Hytteadmin,Turistforeningen/Hytteadmin |
d88b60ddc0bbea880011b48a4d5e9a1374b7b67a | babel-defaults.js | babel-defaults.js | /* eslint-disable object-shorthand */
module.exports = {
// We need to make sure that the transpiler hit the linoleum source since we are
// not building to npm or simliar.
ignore: function(filename) {
return ((/node_modules/.test(filename))
&& !(/linoleum(-[^/]*)?\/electron/.test(filename))
&... | /* eslint-disable object-shorthand */
module.exports = {
// We need to make sure that the transpiler hit the linoleum source since we are
// not building to npm or simliar.
ignore: function(filename) {
return ((/node_modules/.test(filename))
&& !(/linoleum(-[^/]*)?\/(electron|src|tasks|Gulpfile)/.test... | Simplify bable includes and add Gulpfiles | Simplify bable includes and add Gulpfiles
| JavaScript | mit | kpdecker/linoleum |
b8ebb9207195e23afa6c0ce3f943c6908abee740 | rollup.config.js | rollup.config.js | import buble from '@rollup/plugin-buble'
export default {
input: 'src/commands.js',
output: {
dir: 'dist',
format: 'cjs',
sourcemap: true
},
plugins: [buble()],
external(id) { return !/^[\.\/]/.test(id) }
}
| import buble from '@rollup/plugin-buble'
export default {
input: './src/commands.js',
output: {
dir: 'dist',
format: 'cjs',
sourcemap: true
},
plugins: [buble()],
external(id) { return !/^[\.\/]/.test(id) }
}
| Add missing ./ prefix in rollup input | Add missing ./ prefix in rollup input
| JavaScript | mit | ProseMirror/prosemirror-commands |
1f2587a913a987fa0eae03bfa4b4dd1cffb8a5e1 | controllers/users/collection.js | controllers/users/collection.js | module.exports = (function(){
// GET /users/:id/media?lat=<LAT>&lng=<LNG>&time=<TIME>
return function* collection(id) {
// Twitter Requests
var twitterDef = require('q').defer()
var TwitterManager = require('../media/twitter');
var twitterGranuals = twitterDef.promise.then(TwitterManager.search);
//... | module.exports = (function(){
// GET /users/:id/media?lat=<LAT>&lng=<LNG>&time=<TIME>
return function* collection(id) {
var Q = require('q');
var TwitterManager = require('../media/twitter');
var InstagramManager = require('../media/instagram');
// Twitter Requests
var twitterDef = Q.defer()... | Refactor to use promises for social media service responses. | Refactor to use promises for social media service responses.
| JavaScript | mit | capsul/capsul-api |
4e35bbcc85351ff97aeacd3674d16612c94e78be | routes/routes.js | routes/routes.js | var artistController = require('../controllers/artist-controller');
var genreController = require('../controllers/genre-controller');
module.exports = function(app, passport) {
app.get('/auth/facebook', passport.authenticate('facebook', { scope : 'email' }));
app.get('/auth/facebook/callback',
passport.authenti... | var artistController = require('../controllers/artist-controller');
var genreController = require('../controllers/genre-controller');
module.exports = function(app, passport) {
app.get('/auth/facebook', passport.authenticate('facebook', { scope : 'email' }));
app.get('/auth/facebook/callback',
passport.authenti... | Change route file to be used later | Change route file to be used later
| JavaScript | mit | kurtbradd/facebook-music-recommender,kurtbradd/facebook-music-recommender,kurtbradd/facebook-music-recommender,kurtbradd/facebook-music-recommender |
d7c0f286914c260f545b5c9c095a19daed918ff1 | cms/static/cms/js/user/index.js | cms/static/cms/js/user/index.js | $.extend( true, $.fn.dataTable.defaults, {
"autoWidth": false,
"columnDefs": [
{ width: '10%', targets: 0 },
{ width: '15%', targets: 1 },
{ width: '10%', targets: 2 },
{ width: '10%', targets: 3 },
{ width: '25%', targets: 4 },
{ width: '10%', targets: 5 },
... | $.extend( true, $.fn.dataTable.defaults, {
"autoWidth": false,
"columnDefs": [
{ width: '10%', targets: 0 },
{ width: '10%', targets: 1 },
{ width: '10%', targets: 2 },
{ width: '10%', targets: 3 },
{ width: '20%', targets: 4 },
{ width: '10%', targets: 5 },
... | Fix DataTable in User page | [Release_0.0.1] Fix DataTable in User page
| JavaScript | apache-2.0 | deka108/mathqa-server,deka108/mathqa-server,deka108/mathqa-server,deka108/mathqa-server,deka108/meas_deka,deka108/meas_deka,deka108/meas_deka,deka108/meas_deka |
745633dabd3e695a30edc5fbd1625bb7f09aa26d | server/config.js | server/config.js | const productionConfig = {
apiBase: 'http://api.storypalette.net/v1/',
socketBase: 'http://api.storypalette.net/',
environment: 'production',
port: 8882,
};
const developmentConfig = {
apiBase: 'http://localhost:8880/v1/',
socketBase: 'http://localhost:8880/',
environment: 'local',
port: 8882,
}
const... | const productionConfig = {
//apiBase: 'http://api.storypalette.net/v1/',
//socketBase: 'http://api.storypalette.net/',
apiBase: 'http://storypalette-server.herokuapp.com/v1/',
socketBase: 'http://storypalette-server.herokuapp.com/',
environment: 'production',
port: 8882,
};
const developmentConfig = {
ap... | Use heroku api base for now | Use heroku api base for now
| JavaScript | isc | storypalette/storypalette-performer-touch,storypalette/storypalette-performer-touch |
10290106b9a075685852699cb8bbaf5bb3a012ca | tutorials/customProjectors/customProjectors.js | tutorials/customProjectors/customProjectors.js | window.onload = function() {
var xScale = new Plottable.LinearScale();
var yScale = new Plottable.LinearScale();
var xAxis = new Plottable.XAxis(xScale, "bottom");
var yAxis = new Plottable.YAxis(yScale, "left");
// A DataSource is a Plottable object that maintains data and metadata, and updates dependents ... | window.onload = function() {
var xScale = new Plottable.LinearScale();
var yScale = new Plottable.LinearScale();
var xAxis = new Plottable.XAxis(xScale, "bottom");
var yAxis = new Plottable.YAxis(yScale, "left");
var renderer = new Plottable.LineRenderer(gitData, xScale, yScale);
function getXDataValue(d)... | Revert "Update customProjector example to use a scale. Doesn't work yet (pending merge to gh-pages)" | Revert "Update customProjector example to use a scale. Doesn't work yet (pending merge to gh-pages)"
This reverts commit df014cfaed10a0eba602ebb0355ef83452faf133.
Modified example instead of copying.
| JavaScript | mit | RobertoMalatesta/plottable,jacqt/plottable,NextTuesday/plottable,NextTuesday/plottable,gdseller/plottable,jacqt/plottable,palantir/plottable,NextTuesday/plottable,alyssaq/plottable,iobeam/plottable,alyssaq/plottable,jacqt/plottable,palantir/plottable,RobertoMalatesta/plottable,palantir/plottable,danmane/plottable,danma... |
04cc01275c74084ad1d01180ae6a7cf4f3438875 | shared/shared.js | shared/shared.js | import { $assign, $fetch, $replaceAll } from 'domose';
/* Dispatch an Custom Event with a detail
/* ========================================================================== */
function $dispatch(target, type, detail) {
// an event
const event = document.createEvent('CustomEvent');
event.initCustomEvent(type, tr... | import { $assign, $fetch, $replaceAll } from 'domose';
/* Dispatch an Custom Event with a detail
/* ========================================================================== */
function $dispatch(target, type, detail) {
// an event
const event = document.createEvent('CustomEvent');
event.initCustomEvent(type, tr... | Add method to selectively enable focus ring | Add method to selectively enable focus ring
| JavaScript | apache-2.0 | gschnall/global-nav,gschnall/global-nav |
e8dac4b099ea892d8953eedcb035cd802414600b | js/lib/externs.js | js/lib/externs.js | /*
* externs.js - define externs for the google closure compiler
*
* Copyright © 2012-2015, JEDLSoft
*
* 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/li... | /*
* externs.js - define externs for the google closure compiler
*
* Copyright © 2012-2015, JEDLSoft
*
* 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/li... | Fix closure compiler warnings for process.env.* | Fix closure compiler warnings for process.env.*
git-svn-id: 9171c9e75a46cbc9e9e8eb6adca0da07872ad553@1885 5ac057f5-ce63-4fb3-acd1-ab13b794ca36
| JavaScript | apache-2.0 | iLib-js/iLib,iLib-js/iLib,iLib-js/iLib,iLib-js/iLib,iLib-js/iLib |
c38995393eb051f0430d6241725c673aa40db704 | tests/integration/components/pulse-settings/component-test.js | tests/integration/components/pulse-settings/component-test.js | import { moduleForComponent, test } from 'ember-qunit';
import hbs from 'htmlbars-inline-precompile';
moduleForComponent('pulse-settings', 'Integration | Component | pulse settings', {
integration: true
});
test('it renders', function(assert) {
// Set any properties with this.set('myProperty', 'value');
// Han... | import { moduleForComponent, test } from 'ember-qunit';
import hbs from 'htmlbars-inline-precompile';
moduleForComponent('pulse-settings',
'Integration | Component | pulse settings', {
integration: true
});
test('it renders', function(assert) {
this.render(hbs`{{pulse-settings}}`);
assert.ok(/Set Up/.test(thi... | Fix tests for pulse-settings component | Fix tests for pulse-settings component
| JavaScript | apache-2.0 | usecanvas/web-v2,usecanvas/web-v2,usecanvas/web-v2 |
9772f857d22a68912b96d113f7953b89e733e33c | Gruntfile.js | Gruntfile.js | module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-bower-concat');
var taskConfig = {
pkg: grunt.file.readJSON('package.json'),
bower_concat: {
all: {
dest: 'build/_bower.js',
cssDest: 'build/_bower.css',
include: [
... | module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-bower-concat');
var taskConfig = {
pkg: grunt.file.readJSON('package.json'),
bower_concat: {
all: {
dest: 'build/_bower.js',
cssDest: 'build/_bower.css',
include: [
... | Add Bootstrap CSS file reference in grunt task | Add Bootstrap CSS file reference in grunt task
| JavaScript | mit | pra85/grunt-bower-concat-example |
7f79b3c28a91e28548fb93ffdf63164707f60a1f | app/index-load-script.js | app/index-load-script.js | var baseHref = `http://localhost: ${process.env.npm_package_config_port}`
var appEntry = `${baseHref} /gen/app.entry.js`
var baseNode = document.createElement('base')
baseNode.href = baseHref
document.getElementsByTagName('head')[0].appendChild(baseNode)
const createScript = function (scriptPath) {
return new Promi... | var baseHref = 'http://localhost:' + process.env.npm_package_config_port
var appEntry = baseHref + '/gen/app.entry.js'
var baseNode = document.createElement('base')
baseNode.href = baseHref
document.getElementsByTagName('head')[0].appendChild(baseNode)
const createScript = function (scriptPath) {
return new Promise... | Fix loading bug with last merge | Fix loading bug with last merge
| JavaScript | mpl-2.0 | jonathansampson/browser-laptop,jonathansampson/browser-laptop,MKuenzi/browser-laptop,dcposch/browser-laptop,Sh1d0w/browser-laptop,luixxiul/browser-laptop,diasdavid/browser-laptop,willy-b/browser-laptop,diasdavid/browser-laptop,dcposch/browser-laptop,darkdh/browser-laptop,willy-b/browser-laptop,manninglucas/browser-lapt... |
20d13a2f21c00968cd9c749dc1527c0ed43a3a34 | wp-content/themes/template/src/scripts/main.js | wp-content/themes/template/src/scripts/main.js | $(document).ready(function () {
$('#primaryPostForm').validate()
// Image preview in upload input
$('.form__input--upload').on('change', function () {
var label = $(this).data('label');
var image = (window.URL ? URL : webkitURL).createObjectURL(this.files[0]);
$(label).css('backg... | $(document).ready(function () {
$('#primaryPostForm').validate()
// Image preview in upload input
$('.form__input--upload').on('change', function () {
var label = $(this).data('label');
var image = (window.URL ? URL : webkitURL).createObjectURL(this.files[0]);
$(label).css('backg... | Remove color switcher fade effect | Remove color switcher fade effect | JavaScript | mit | DNepovim/kraj-praha,DNepovim/kraj-praha,DNepovim/kraj-praha |
cc1a92e941a68df9f0f606c1b399e83a013a9aca | aura-components/src/main/components/auradocs/search/searchController.js | aura-components/src/main/components/auradocs/search/searchController.js | /*
* Copyright (C) 2012 salesforce.com, 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 ... | /*
* Copyright (C) 2012 salesforce.com, 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 ... | Revert "Fix for possible deref of cleaned up source component" | Revert "Fix for possible deref of cleaned up source component"
This reverts commit 2b35e47816edb0f655fca21d108d651a6a218b2c.
| JavaScript | apache-2.0 | madmax983/aura,badlogicmanpreet/aura,lcnbala/aura,badlogicmanpreet/aura,madmax983/aura,forcedotcom/aura,SalesforceSFDC/aura,forcedotcom/aura,DebalinaDey/AuraDevelopDeb,madmax983/aura,DebalinaDey/AuraDevelopDeb,navyliu/aura,forcedotcom/aura,SalesforceSFDC/aura,madmax983/aura,igor-sfdc/aura,lhong375/aura,navyliu/aura,for... |
d12eeb4944e9414b1f0543fda462fff3656b9970 | application/bar/index.js | application/bar/index.js | var builder = require('focus').component.builder;
var React = require('react');
var applicationStore = require('focus').application.builtInStore();
var barMixin = {
getDefaultProps: function getCartridgeDefaultProps(){
return {
appName: "",
style: {}
};
},
/** @inheriteddoc */
getInitialSta... | Add summary inside the bar. | [bar] Add summary inside the bar.
| JavaScript | mit | KleeGroup/focus-components,Bernardstanislas/focus-components,anisgh/focus-components,Bernardstanislas/focus-components,KleeGroup/focus-components,asimsir/focus-components,JabX/focus-components,sebez/focus-components,Ephrame/focus-components,JabX/focus-components,sebez/focus-components,anisgh/focus-components,Ephrame/fo... | |
a8836a562b1a7d1f0d4a4f59f9c30c3b46ca7318 | grid-packages/ag-grid-docs/src/javascript-charts-axis/axis-tick-count/main.js | grid-packages/ag-grid-docs/src/javascript-charts-axis/axis-tick-count/main.js | var options = {
container: document.getElementById('myChart'),
data: generateSpiralData(),
series: [{
type: 'line',
xKey: 'x',
yKey: 'y',
marker: {
enabled: false
}
}],
axes: [
{
type: 'number',
position: 'bottom',
... | var options = {
container: document.getElementById('myChart'),
data: generateSpiralData(),
series: [{
type: 'line',
xKey: 'x',
yKey: 'y',
marker: {
enabled: false
}
}],
axes: [
{
type: 'number',
position: 'bottom',
... | Fix "Axis Tick Styling" example. | Fix "Axis Tick Styling" example.
| JavaScript | mit | ceolter/ag-grid,ceolter/ag-grid,ceolter/angular-grid,ceolter/angular-grid |
87888fd4f68dc0c34fb84e3b13cdc420befe7b9a | app/assets/javascripts/express_admin/utility.js | app/assets/javascripts/express_admin/utility.js | $(function() {
// toggle on/off switch
$(document).on('click', '[data-toggle]', function() {
targetHide = $(this).data('toggle-hide')
targetShow = $(this).data('toggle-show')
$('[data-toggle-name="' + targetHide + '"]').addClass('hide')
$('[data-toggle-name="' + targetShow + '"]').removeClass('hi... | $(function() {
// toggle on/off switch
$(document).on('click', '[data-toggle]', function() {
targetHide = $(this).data('toggle-hide')
targetShow = $(this).data('toggle-show')
$('[data-toggle-name="' + targetHide + '"]').addClass('hide')
$('[data-toggle-name="' + targetShow + '"]').removeClass('hi... | Remove the auto focus on element toggle feature | Remove the auto focus on element toggle feature
| JavaScript | mit | aelogica/express_admin,aelogica/express_admin,aelogica/express_admin,aelogica/express_admin |
071ac08d6ef28b1dd39224a4bf4df24140203056 | backend/app/assets/javascripts/spree/backend/product_picker.js | backend/app/assets/javascripts/spree/backend/product_picker.js | $.fn.productAutocomplete = function (options) {
'use strict'
// Default options
options = options || {}
var multiple = typeof (options.multiple) !== 'undefined' ? options.multiple : true
function formatProduct (product) {
return Select2.util.escapeMarkup(product.name)
}
function formatProductList(p... | $.fn.productAutocomplete = function (options) {
'use strict'
// Default options
options = options || {}
var multiple = typeof (options.multiple) !== 'undefined' ? options.multiple : true
function formatProduct (product) {
return Select2.util.escapeMarkup(product.name)
}
function formatProductList(p... | Fix remove last element from select box | Fix remove last element from select box
| JavaScript | bsd-3-clause | imella/spree,imella/spree,imella/spree |
f0ecaecbe12972301e5c8044d9613f1b46b8a4ec | src/components/navigation/Navbar.js | src/components/navigation/Navbar.js | import React from 'react'
import { Link } from 'react-router'
import { ElloMark } from '../iconography/ElloIcons'
class Navbar extends React.Component {
render() {
return (
<nav className="Navbar" role="navigation">
<Link to="/">
<ElloMark />
</Link>
<div className="Navbar... | import React from 'react'
import Mousetrap from 'mousetrap'
import { Link } from 'react-router'
import { ElloMark } from '../iconography/ElloIcons'
import { SHORTCUT_KEYS } from '../../constants/action_types'
const shortcuts = {
[SHORTCUT_KEYS.SEARCH]: '/search',
[SHORTCUT_KEYS.DISCOVER]: '/discover',
[SHORTCUT... | Add shortcut keys for the main navigation | Add shortcut keys for the main navigation | JavaScript | mit | ello/webapp,ello/webapp,ello/webapp |
1af5312c5a4f8e3561e052525480d6ce6cde07b9 | src/platforms/electron/startSandbox.js | src/platforms/electron/startSandbox.js | import express from 'express';
import unpackByOutpoint from './unpackByOutpoint';
// Polyfills and `lbry-redux`
global.fetch = require('node-fetch');
global.window = global;
if (typeof global.fetch === 'object') {
global.fetch = global.fetch.default;
}
const { Lbry } = require('lbry-redux');
delete global.window;
... | import express from 'express';
import unpackByOutpoint from './unpackByOutpoint';
// Polyfills and `lbry-redux`
global.fetch = require('node-fetch');
global.window = global;
if (typeof global.fetch === 'object') {
global.fetch = global.fetch.default;
}
const { Lbry } = require('lbry-redux');
delete global.window;
... | Use port from variable instead of hard coding | Use port from variable instead of hard coding
### Changes
1. Edited error description to add port's value from variable instead of hard coding. Also removed redundant `//` between localhost and port. | JavaScript | mit | lbryio/lbry-app,lbryio/lbry-electron,lbryio/lbry-electron,lbryio/lbry-app,lbryio/lbry-electron |
8527c947f131b9c430041943b3596b46d65b54ec | src/controllers/post-controller.js | src/controllers/post-controller.js | import BlogPost from '../database/models/blog-post';
import log from '../log';
const PUBLIC_API_ATTRIBUTES = [
'id',
'title',
'link',
'description',
'date_updated',
'date_published',
'author_id'
];
const DEFAULT_ORDER = [
['date_published', 'DESC']
];
export function getAll() {
return new Promise((... | import BlogPost from '../database/models/blog-post';
import log from '../log';
const PUBLIC_API_ATTRIBUTES = [
'id',
'title',
'link',
'image_uri',
'description',
'date_updated',
'date_published',
'author_id'
];
const DEFAULT_ORDER = [
['date_published', 'DESC']
];
export function getAll() {
retur... | Allow image_uri to be part of the public API | Allow image_uri to be part of the public API
| JavaScript | mit | csblogs/api-server,csblogs/api-server |
ad6916c838d96bc3b2a29678aca4b60dc098d9a7 | client/app/components/graph/graph.controller.js | client/app/components/graph/graph.controller.js | import _ from 'lodash'
class GraphController {
constructor() {
this.prepareData();
}
prepareData() {
// I am assuming the reference object is always sent
// at position 0 so I will not be figuring that out
let series = [];
let labels = [];
this.demodata.map(function (item) {
let in... | import _ from 'lodash'
class GraphController {
constructor() {
this.prepareData();
}
capitalize(string) {
return string.replace(/(?:^|\s)\S/g, function(a) { return a.toUpperCase(); });
}
prepareData() {
// I am assuming the reference object is always sent
// at position 0 so I will not be f... | Make the graph labels nicer | Make the graph labels nicer
| JavaScript | apache-2.0 | wojtekgalaj/webpack-interview-exercise,wojtekgalaj/webpack-interview-exercise |
2be8ae444d43d27c5e7e8eaadc6fb0998cde65a8 | src/components/navbar/SearchMixin.js | src/components/navbar/SearchMixin.js | /* By default the search is hidden. When you add a component on the page that wants to use the search,
* then add this as a mixin. It will use CSS to activate the search while the component is shown.
*
* WARNING: this assumes that it is called within a <keep-alive> tag, therefore it listens
* at activated/deactivat... | /* By default the search is hidden. When you add a component on the page that wants to use the search,
* then add this as a mixin. It will use CSS to activate the search while the component is shown.
*
* WARNING: this assumes that it is called within a <keep-alive> tag, therefore it listens
* at activated/deactivat... | Reset search on page change | Reset search on page change
| JavaScript | mit | dukecon/dukecon_pwa,dukecon/dukecon_pwa,dukecon/dukecon_pwa |
8091c80faced7df102973a726179662a7fd3f2c9 | src/zeit/content/cp/browser/resources/area.js | src/zeit/content/cp/browser/resources/area.js | (function ($) {
var FIELDS = {
'centerpage': 'referenced_cp',
'channel': 'query',
'query': 'raw_query'
};
var show_matching_field = function(container, current_type) {
$(['referenced_cp', 'query', 'raw_query']).each(function(i, field) {
var method = field == FIELDS[current_type] ? 'show' : 'h... | (function ($) {
var FIELDS = {
'centerpage': 'referenced_cp',
'channel': 'query',
'query': 'raw_query'
};
var show_matching_field = function(container, current_type) {
$(['referenced_cp', 'query', 'raw_query']).each(function(i, field) {
var method = field == FIELDS[current_type] ? 'show' : 'h... | Exit fragment-ready event handler when it's from a non-applicable fragment | Exit fragment-ready event handler when it's from a non-applicable fragment
| JavaScript | bsd-3-clause | ZeitOnline/zeit.content.cp,ZeitOnline/zeit.content.cp |
0442b430be43b04580abcdcc7cdbbbaed5540c44 | src/lights/DirectionalLightShadow.js | src/lights/DirectionalLightShadow.js | import { LightShadow } from './LightShadow.js';
import { OrthographicCamera } from '../cameras/OrthographicCamera.js';
/**
* @author mrdoob / http://mrdoob.com/
*/
function DirectionalLightShadow( ) {
LightShadow.call( this, new OrthographicCamera( - 5, 5, 5, - 5, 0.5, 500 ) );
}
DirectionalLightShadow.prototyp... | import { LightShadow } from './LightShadow.js';
import { OrthographicCamera } from '../cameras/OrthographicCamera.js';
/**
* @author mrdoob / http://mrdoob.com/
*/
function DirectionalLightShadow() {
LightShadow.call( this, new OrthographicCamera( - 5, 5, 5, - 5, 0.5, 500 ) );
}
DirectionalLightShadow.prototype... | Add matrix calcs to direction shadow class | Add matrix calcs to direction shadow class
| JavaScript | mit | Liuer/three.js,greggman/three.js,TristanVALCKE/three.js,zhoushijie163/three.js,Samsy/three.js,donmccurdy/three.js,jpweeks/three.js,mrdoob/three.js,SpinVR/three.js,greggman/three.js,stanford-gfx/three.js,TristanVALCKE/three.js,looeee/three.js,Itee/three.js,Samsy/three.js,aardgoose/three.js,TristanVALCKE/three.js,looeee/... |
5c4cae3e2e64e35e41dd3a210592846f130f3171 | chrome/background.js | chrome/background.js | // this idea borrowed from
// https://www.planbox.com/blog/development/coding/bypassing-githubs-content-security-policy-chrome-extension.html
chrome.webRequest.onHeadersReceived.addListener(function(details) {
for (i = 0; i < details.responseHeaders.length; i++) {
if (isCSPHeader(details.responseHeaders[i].name... | // this idea borrowed from
// https://www.planbox.com/blog/development/coding/bypassing-githubs-content-security-policy-chrome-extension.html
chrome.webRequest.onHeadersReceived.addListener(function(details) {
for (i = 0; i < details.responseHeaders.length; i++) {
if (isCSPHeader(details.responseHeaders[i].name... | Handle GitHub's updated Content Security Policy | Handle GitHub's updated Content Security Policy
It looks like GitHub changed their CSP recently. This extension didn't work for me until I added this code.
| JavaScript | mit | thieman/github-selfies,thieman/github-selfies |
9f143c518269d8a14b9c40964dda586aa27a6d37 | client/src/app.js | client/src/app.js | import React, { Component } from 'react';
import {
BrowserRouter as Router,
Route,
Switch
} from 'react-router-dom';
import MonthDetail from './components/pages/History/MonthDetail';
import HomePage from './components/pages/Home';
import SignupPage from './components/pages/Signup';
import LoginPage from '.... | import React, { Component } from 'react';
import {
BrowserRouter as Router,
Route,
Switch
} from 'react-router-dom';
import MonthDetail from './components/pages/History/MonthDetail';
import HomePage from './components/pages/Home';
import SignupPage from './components/pages/Signup';
import LoginPage from '.... | Add stopwatch as auth protected route | Add stopwatch as auth protected route
| JavaScript | mit | mbchoa/presence,mbchoa/presence |
26f51f95a8547f8a6e7067856b432183ef9908ef | draft-js-image-plugin/src/modifiers/addImage.js | draft-js-image-plugin/src/modifiers/addImage.js | import {
EditorState,
AtomicBlockUtils,
} from 'draft-js';
export default (editorState, url, extraData) => {
const urlType = 'image';
const contentState = editorState.getCurrentContent();
const contentStateWithEntity = contentState.createEntity(urlType, 'IMMUTABLE', { ...extraData, src: url });
const entit... | import {
EditorState,
AtomicBlockUtils,
} from 'draft-js';
export default (editorState, url, extraData) => {
const urlType = 'image';
const contentState = editorState.getCurrentContent();
const contentStateWithEntity = contentState.createEntity(urlType, 'IMMUTABLE', { ...extraData, src: url });
const entit... | Move cursor after image when inserting | Move cursor after image when inserting
| JavaScript | mit | nikgraf/draft-js-plugin-editor,draft-js-plugins/draft-js-plugins,nikgraf/draft-js-plugin-editor,nikgraf/draft-js-plugin-editor,draft-js-plugins/draft-js-plugins,draft-js-plugins/draft-js-plugins,draft-js-plugins/draft-js-plugins |
7f80989cb19f31de01fffcc2976939bf095b0c0d | apps/jsdoc/actions.js | apps/jsdoc/actions.js | include('helma/webapp/response');
include('helma/engine');
include('helma/jsdoc');
require('core/array');
exports.index = function index(req, module) {
var repo = new ScriptRepository(getRepositories()[1]);
if (module && module != "/") {
var jsdoc = [];
res = repo.getScriptResource(module);
... | include('helma/webapp/response');
include('helma/engine');
include('helma/jsdoc');
require('core/array');
exports.index = function index(req, module) {
var repo = new ScriptRepository(getRepositories()[1]);
if (module && module != "/") {
var jsdoc = [];
var res = repo.getScriptResource(module);... | Disable debug output, add missing var | Disable debug output, add missing var
| JavaScript | apache-2.0 | ringo/ringojs,ashwinrayaprolu1984/ringojs,ringo/ringojs,ashwinrayaprolu1984/ringojs,oberhamsi/ringojs,ashwinrayaprolu1984/ringojs,Transcordia/ringojs,Transcordia/ringojs,oberhamsi/ringojs,ashwinrayaprolu1984/ringojs,ringo/ringojs,oberhamsi/ringojs,Transcordia/ringojs,ringo/ringojs,Transcordia/ringojs |
ca2c3bf7d57284eaaf8e9be69c6c15746fcd5bde | src/components/ComponentizeContent.js | src/components/ComponentizeContent.js | import { node, object, oneOfType, string } from 'prop-types'
import Bit from './Bit'
import Code from './Code'
import HTML from 'html-parse-stringify'
import React from 'react'
import reactify from '../util/reactify'
import Image from './Image'
import Rule from './Rule'
import Paragraph from './Paragraph'
const DEFAUL... | import { node, object, oneOfType, string } from 'prop-types'
import Bit from './Bit'
import Code from './Code'
import HTML from 'html-parse-stringify'
import React from 'react'
import reactify from '../util/reactify'
import Image from './Image'
import Rule from './Rule'
import Paragraph from './Paragraph'
const DEFAUL... | Add better fix for handling invalid markdown inputs | Add better fix for handling invalid markdown inputs
| JavaScript | mit | dlindahl/stemcell,dlindahl/stemcell |
ce3ee6f2131314d395734ef0e69b89a5f62cf51d | gulp/continuous-integration.js | gulp/continuous-integration.js | 'use strict';
var gulp = require('gulp');
gulp.task(
'ci',
['coding-standards', 'test', 'protractor', 'protractor:dist']
);
| 'use strict';
var gulp = require('gulp');
gulp.task(
'ci',
['coding-standards', 'test', 'protractor']
);
| Remove protractor:dist from the ci task (gulp). | Remove protractor:dist from the ci task (gulp).
| JavaScript | mit | algotech/angular-boilerplate,OroianRares/stock-prices,OroianRares/BrowserChatApp,OroianRares/angular-boilerplate,OroianRares/stock-prices,OroianRares/BrowserChatApp,algotech/angular-boilerplate,OroianRares/angular-boilerplate |
86abbdef8290ab8dda9553e1981f92382321a602 | EdityMcEditface/wwwroot/edity/layouts/editComponents/source.js | EdityMcEditface/wwwroot/edity/layouts/editComponents/source.js | "use strict";
jsns.run([
"htmlrest.domquery",
"htmlrest.storage",
"htmlrest.rest",
"htmlrest.controller",
"htmlrest.widgets.navmenu",
"edity.pageSourceSync"
],
function (exports, module, domQuery, storage, rest, controller, navmenu, sourceSync) {
function EditSourceController(bindings) {
... | "use strict";
jsns.run([
"htmlrest.domquery",
"htmlrest.storage",
"htmlrest.rest",
"htmlrest.controller",
"htmlrest.widgets.navmenu",
"edity.pageSourceSync"
],
function (exports, module, domQuery, storage, rest, controller, navmenu, sourceSync) {
function EditSourceController(bindings) {
... | Set codemirror size when opening modal. | Set codemirror size when opening modal.
| JavaScript | mit | threax/EdityMcEditface,threax/EdityMcEditface,threax/EdityMcEditface |
8110d5ddc810886ca3bb7c72ac2908d05ec6176b | troposphere/static/js/controllers/projects.js | troposphere/static/js/controllers/projects.js | define(['react', 'collections/projects', 'models/project', 'rsvp'], function(React, Collection, Model, RSVP) {
var projects = new Collection();
var getProjects = function() {
return new RSVP.Promise(function(resolve, reject) {
projects.fetch({
success: resolve,
... | define(['react', 'collections/projects', 'models/project', 'rsvp', 'controllers/notifications'], function(React, Collection, Model, RSVP, Notifications) {
var projects = new Collection();
var getProjects = function() {
return new RSVP.Promise(function(resolve, reject) {
projects.fetch({
... | Add success notifcation for project creation | Add success notifcation for project creation
| JavaScript | apache-2.0 | CCI-MOC/GUI-Frontend,CCI-MOC/GUI-Frontend,CCI-MOC/GUI-Frontend,CCI-MOC/GUI-Frontend,CCI-MOC/GUI-Frontend |
86e6616397397d0cdcda5aa0d89ee872429769b6 | src/shared/components/login/login.js | src/shared/components/login/login.js | import React, { Component } from 'react';
import Modal from 'shared/components/modal/modal';
import Form from 'shared/components/form/form';
import FormEmail from 'shared/components/form/formEmail/formEmail';
import FormPassword from 'shared/components/form/formPassword/formPassword';
class Login extends Component {
... | import React, { Component } from 'react';
import Modal from 'shared/components/modal/modal';
import Form from 'shared/components/form/form';
import { Redirect } from 'react-router-dom';
import axios from 'axios';
import config from 'config/environment';
import _ from 'lodash';
import FormEmail from 'shared/components/f... | Handle user signing and redirect | Handle user signing and redirect
| JavaScript | mit | hollomancer/operationcode_frontend,miaket/operationcode_frontend,NestorSegura/operationcode_frontend,sethbergman/operationcode_frontend,tskuse/operationcode_frontend,NestorSegura/operationcode_frontend,alexspence/operationcode_frontend,OperationCode/operationcode_frontend,tskuse/operationcode_frontend,sethbergman/opera... |
b74e5d8d697f113d43f6c0793dc669168220632c | lib/axiom_pnacl/executables.js | lib/axiom_pnacl/executables.js | // Copyright (c) 2014 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import AxiomError from 'axiom/core/error';
import environment from 'axiom_shell/environment';
import VimCommand from 'axiom_pnacl/vim';
// @note... | // Copyright (c) 2014 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import AxiomError from 'axiom/core/error';
import environment from 'axiom_shell/environment';
import VimCommand from 'axiom_pnacl/vim';
// @note... | Allow 'vim' command to accept an array of arguments. | Allow 'vim' command to accept an array of arguments.
| JavaScript | apache-2.0 | rpaquay/axiom,chromium/axiom,umop/axiom_old_private,ussuri/axiom,mcanthony/axiom |
7c5ddc02666adb0bd8f011e908fb1d0e11a01244 | util.js | util.js | function quote(s) {
return "\"" + s.replace(/([\\\"])/, "\\$1") + "\"";
}
function maybe_quote(s) {
if (/[\\\"]/.test(s))
return quote(s);
else
return s;
}
function repr(x, max_depth) {
if (max_depth == undefined)
max_depth = 1;
if (x === null) {
return "null";
} if (typeof x == "object") {
if ("hash... | function quote(s) {
return "\"" + s.replace(/([\\\"])/, "\\$1") + "\"";
}
function maybe_quote(s) {
if (/[\\\"]/.test(s))
return quote(s);
else
return s;
}
function repr(x, max_depth) {
if (max_depth == undefined)
max_depth = 1;
if (x === null) {
return "null";
} else if (x instanceof java.lang.Iterabl... | Allow repr to show java.lang.Iterables. | Allow repr to show java.lang.Iterables.
| JavaScript | mit | arlolra/flashproxy,infinity0/flashproxy,infinity0/flashproxy,arlolra/flashproxy,infinity0/flashproxy,arlolra/flashproxy,arlolra/flashproxy,glamrock/flashproxy,glamrock/flashproxy,glamrock/flashproxy,infinity0/flashproxy,arlolra/flashproxy,arlolra/flashproxy,infinity0/flashproxy,glamrock/flashproxy,arlolra/flashproxy,gl... |
a7fb7e9a16e45bbc29603be46d082910c06b30b7 | app.js | app.js | function Actor(other) {
other = other || {};
this.name = other.name || "";
this.init = other.init || 0;
this.hp = other.hp || 0;
};
var sort = function(left, right) {
return left.init==right.init ? 0 : (left.init > right.init ? -1 : 1);
};
function Encounter() {
this.actors = [];
};
var ViewModel = function() {... | function Actor(other) {
other = other || {};
this.name = other.name || "";
this.init = other.init || 0;
this.hp = other.hp || 1;
};
var sort = function(left, right) {
return left.init==right.init ? 0 : (left.init > right.init ? -1 : 1);
};
function Encounter() {
this.actors = [];
};
var ViewModel = function() {... | Change default health to 1. | Change default health to 1.
| JavaScript | mit | madigan/ncounter,madigan/ncounter |
c15fc1bae4bd27839a0d78e220d02eb94bd4bdae | test/helpers/supportsWorker.js | test/helpers/supportsWorker.js | module.exports = function supportsWorker() {
try {
// eslint-disable-next-line node/no-unsupported-features/node-builtins
return require("worker_threads") !== undefined;
} catch (e) {
return false;
}
};
| const nodeVersion = process.versions.node.split(".").map(Number);
module.exports = function supportsWorker() {
// Verify that in the current node version new Worker() accepts URL as the first parameter:
// https://nodejs.org/api/worker_threads.html#worker_threads_new_worker_filename_options
if (nodeVersion[0] >= 14... | Fix new Worker() compatibility check in unit tests for older node versions | Fix new Worker() compatibility check in unit tests for older node versions
| JavaScript | mit | SimenB/webpack,webpack/webpack,webpack/webpack,webpack/webpack,webpack/webpack,SimenB/webpack,SimenB/webpack,SimenB/webpack |
d78824b2be952e65117258d3ec701304425fe304 | frontend/src/containers/TeamPage/TeamPage.js | frontend/src/containers/TeamPage/TeamPage.js | import React, { Component } from 'react'
import Helmet from 'react-helmet'
import { NavBar } from '../../components'
const styles = {
iframe: {
width: '100%',
}
}
class TeamPage extends Component {
componentDidMount() {
var iframe = this.refs.iframe
iframe.addEventListener('load', () => {
va... | import React, { Component } from 'react'
import Helmet from 'react-helmet'
import { NavBar } from '../../components'
const styles = {
iframe: {
width: '100%',
}
}
class TeamPage extends Component {
componentDidMount() {
var iframe = this.refs.iframe
iframe.addEventListener('load', () => {
va... | Fix issue where team page is not found | Fix issue where team page is not found
| JavaScript | mit | hackclub/api,hackclub/api,hackclub/api |
6c19c79f596ae6872c7b5b2fe2b31ff4f5c8cb51 | test/mjsunit/asm/math-clz32.js | test/mjsunit/asm/math-clz32.js | // Copyright 2015 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Flags: --allow-natives-syntax
var stdlib = { Math: Math };
var f = (function Module(stdlib) {
"use asm";
var clz32 = stdlib.Math.clz32;
fun... | // Copyright 2015 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Flags: --allow-natives-syntax
var stdlib = { Math: Math };
var f = (function Module(stdlib) {
"use asm";
var clz32 = stdlib.Math.clz32;
fun... | Fix test of %_MathClz32 intrinsic. | [turbofan] Fix test of %_MathClz32 intrinsic.
This test will fail once we optimize top-level code, because the
aforementioned intrinsic doesn't perform a NumberToUint32 conversion.
R=titzer@chromium.org
TEST=mjsunit/asm/math-clz32
Review URL: https://codereview.chromium.org/1041173002
Cr-Commit-Position: 972c6d2dc6... | JavaScript | mit | UniversalFuture/moosh,UniversalFuture/moosh,UniversalFuture/moosh,UniversalFuture/moosh |
2747aa2c950deb95a99ef937c23c8d7db17d5f86 | src/main/resources/com/semperos/screwdriver/js/extension/process-rjs.js | src/main/resources/com/semperos/screwdriver/js/extension/process-rjs.js | //Create a runner that will run a separate build for each item
//in the configs array. Thanks to @jwhitley for this cleverness
for (var i = 0; i < __Screwdriver.rjs.moduleConfigs.length; i++) {
requirejs.optimize(__Screwdriver.rjs.moduleConfigs[i], function(x) {
print("Screwdriver RequireJS Optimizer (r.js)... | //Create a runner that will run a separate build for each item
//in the configs array. Thanks to @jwhitley for this cleverness
print("Starting RequireJS (r.js) Optimizer...");
for (var i = 0; i < __Screwdriver.rjs.moduleConfigs.length; i++) {
requirejs.optimize(__Screwdriver.rjs.moduleConfigs[i], function(x) {
... | Make it clearer when the r.js optimizer starts | Make it clearer when the r.js optimizer starts
| JavaScript | apache-2.0 | semperos/screwdriver,semperos/screwdriver |
9678e952e50cef724dfae8871ceda7b3dc056a4f | src/services/fetchOverallStats.js | src/services/fetchOverallStats.js | import fetch from 'node-fetch';
import { API_URL, HTTP_HEADERS } from '../constants';
const headers = HTTP_HEADERS;
const formatStats = (data, battletag, competitive) => {
const stats = data['overall_stats'];
const gameMode = competitive ? 'Competitive' : 'Quick Play';
return `*${battletag}*'s Overall Stats ($... | import fetch from 'node-fetch';
import { API_URL, HTTP_HEADERS } from '../constants';
const headers = HTTP_HEADERS;
const formatStats = (data, battletag, competitive) => {
const stats = data['overall_stats'];
const gameMode = competitive ? 'Competitive' : 'Quick Play';
let level = stats['level'];
if (typeof s... | Add skill rating and make win rate more precise | Add skill rating and make win rate more precise
Fixes #1
| JavaScript | mit | chesterhow/overwatch-telegram-bot |
ca37507057f8920d078f203fc56cf3070defc8c7 | src/List/List.js | src/List/List.js | var React = require('react');
var classNames = require('classnames');
var ListItem = require('./ListItem');
var ListItemGroup = require('./ListItemGroup');
var List = React.createClass({
displayName: 'List',
getDefaultProps: function() {
return {
className: ''
}
},
getListItems: function(list)... | var React = require('react');
var classNames = require('classnames');
var _ = require('underscore');
var ListItem = require('./ListItem');
var ListItemGroup = require('./ListItemGroup');
var List = React.createClass({
displayName: 'List',
propTypes: {
className: React.PropTypes.string,
items: React.PropT... | Add key to iterated objects | Add key to iterated objects
| JavaScript | apache-2.0 | mesosphere/reactjs-components,mesosphere/reactjs-components |
2068d2d2bc6907b2bd7990a933d93d5044cf35e3 | src/lib/session/index.js | src/lib/session/index.js | import routes from '../routes'
import request from '../request'
const create = (opts, email, password) =>
request.post(opts, routes.session, { email, password })
const verify = Promise.resolve(1)
const destroy = Promise.resolve(1)
export default {
create,
verify,
destroy,
}
| import routes from '../routes'
import request from '../request'
const create = (opts, email, password) =>
request.post(opts, routes.session, { email, password })
export default {
create,
}
| Remove unused endpoints on session route | Remove unused endpoints on session route
| JavaScript | mit | pagarme/pagarme-js |
e02a8202e83018b10adabc986b720c552df9bcae | website/app/application/core/projects/project/files/files-controller.js | website/app/application/core/projects/project/files/files-controller.js | Application.Controllers.controller("FilesController", ["$state", FilesController]);
function FilesController($state) {
//console.log("FileController going to projects.project.files.all");
//$state.go('projects.project.files.all');
var ctrl = this;
ctrl.showSearchResults = showSearchResults;
//////... | Application.Controllers.controller("FilesController", ["$state", FilesController]);
function FilesController($state) {
var ctrl = this;
ctrl.showSearchResults = showSearchResults;
init();
//////////////////
function showSearchResults() {
$state.go('projects.project.files.search');
}
... | Remove console statement. Move initialization logic for controller into init() method. | Remove console statement. Move initialization logic for controller into init() method.
| JavaScript | mit | materials-commons/materialscommons.org,materials-commons/materialscommons.org,materials-commons/materialscommons.org,materials-commons/materialscommons.org,materials-commons/materialscommons.org |
78be30be622d78ce3146ae659f1277b5ff127b57 | website/app/index/sidebar-projects.js | website/app/index/sidebar-projects.js | Application.Directives.directive("sidebarProjects", sidebarProjectsDirective);
function sidebarProjectsDirective() {
return {
restrict: "AE",
replace: true,
templateUrl: "index/sidebar-projects.html",
controller: "sidebarProjectsDirectiveController"
};
}
Application.Controllers... | Application.Directives.directive("sidebarProjects", sidebarProjectsDirective);
function sidebarProjectsDirective() {
return {
restrict: "AE",
replace: true,
templateUrl: "index/sidebar-projects.html",
controller: "sidebarProjectsDirectiveController"
};
}
Application.Controllers... | Switch project view when user picks a different project. | Switch project view when user picks a different project.
| JavaScript | mit | materials-commons/materialscommons.org,materials-commons/materialscommons.org,materials-commons/materialscommons.org,materials-commons/materialscommons.org,materials-commons/materialscommons.org |
94352ff890da1dc1a83651b316eba519d9101243 | optimize/index.js | optimize/index.js | var eng = require('./node/engine');
module.exports = {
minimize: function(func, options, callback) {
eng.runPython('minimize', func, options, callback);
},
nonNegLeastSquares: function(A, b, callback) {
eng.runPython('nnls', A, b, callback);
}
}
| var eng = require('./node/engine');
module.exports = {
localMinimize: function(func, options, callback) {
eng.runPython('local', func, options, callback);
},
globalMinimize: function(func, options, callback) {
eng.runPython('global', func, options, callback);
},
nonNegLeastSquares: function(A, b, c... | Add localMin and globalMin to API | Add localMin and globalMin to API
| JavaScript | mit | acjones617/scipy-node,acjones617/scipy-node |
fe8f4e74ed73f3c56e8747b393e0036261cc3d4d | app/scripts/components/openstack/openstack-volume/openstack-volume-snapshots.js | app/scripts/components/openstack/openstack-volume/openstack-volume-snapshots.js | const volumeSnapshots = {
templateUrl: 'views/partials/filtered-list.html',
controller: VolumeSnapshotsListController,
controllerAs: 'ListController',
bindings: {
resource: '<'
}
};
export default volumeSnapshots;
// @ngInject
function VolumeSnapshotsListController(
baseResourceListController,
$scop... | const volumeSnapshots = {
templateUrl: 'views/partials/filtered-list.html',
controller: VolumeSnapshotsListController,
controllerAs: 'ListController',
bindings: {
resource: '<'
}
};
export default volumeSnapshots;
// @ngInject
function VolumeSnapshotsListController(
baseResourceListController,
$scop... | Use arrow functions instead of vm variable (WAL-400) | Use arrow functions instead of vm variable (WAL-400)
| JavaScript | mit | opennode/waldur-homeport,opennode/waldur-homeport,opennode/waldur-homeport,opennode/waldur-homeport |
a150a6caa9db55a262335df60a8048e03171a227 | feature-detects/es6/promises.js | feature-detects/es6/promises.js | /*!
{
"name": "ES6 Promises",
"property": "promises",
"caniuse": "promises",
"polyfills": ["es6promises"],
"authors": ["Krister Kari", "Jake Archibald"],
"tags": ["es6"],
"notes": [{
"name": "The ES6 promises spec",
"href": "https://github.com/domenic/promises-unwrapping"
},{
"name": "Chromi... | /*!
{
"name": "ES6 Promises",
"property": "promises",
"caniuse": "promises",
"polyfills": ["es6promises"],
"authors": ["Krister Kari", "Jake Archibald"],
"tags": ["es6"],
"notes": [{
"name": "The ES6 promises spec",
"href": "https://github.com/domenic/promises-unwrapping"
},{
"name": "Chromi... | Remove "cast" from Promise test | Remove "cast" from Promise test
Promise.resolve now behaves as Promise.cast
| JavaScript | mit | Modernizr/Modernizr,Modernizr/Modernizr |
607cedc66dcee8d76c2786e1aa2b2389577bd204 | src/plugins/loading-bar.js | src/plugins/loading-bar.js | import Vue from 'vue'
import { isSSR } from './platform.js'
import QAjaxBar from '../components/ajax-bar/QAjaxBar.js'
export default {
start () {},
stop () {},
increment () {},
install ({ $q, cfg }) {
if (isSSR) {
$q.loadingBar = this
return
}
const bar = $q.loadingBar = new Vue({
... | import Vue from 'vue'
import { isSSR } from './platform.js'
import QAjaxBar from '../components/ajax-bar/QAjaxBar.js'
export default {
start () {},
stop () {},
increment () {},
install ({ $q, cfg }) {
if (isSSR) {
$q.loadingBar = this
return
}
const bar = $q.loadingBar = new Vue({
... | Add component name for LoadingBar plugin | chore: Add component name for LoadingBar plugin
| JavaScript | mit | pdanpdan/quasar,quasarframework/quasar,pdanpdan/quasar,pdanpdan/quasar,rstoenescu/quasar-framework,rstoenescu/quasar-framework,fsgiudice/quasar,fsgiudice/quasar,quasarframework/quasar,pdanpdan/quasar,quasarframework/quasar,quasarframework/quasar,rstoenescu/quasar-framework,fsgiudice/quasar |
9496ca53251d22fa7c43af672dbc39feeeace5fe | test/helpers/capture-candidates.js | test/helpers/capture-candidates.js | module.exports = function(pc, candidates, callback) {
var timer;
pc.onicecandidate = function(evt) {
if (evt.candidate) {
console.log(evt);
candidates.push(evt.candidate);
}
else {
// TODO: trigger callback when supported
}
};
timer = setInterval(function() {
if (pc.iceGa... | module.exports = function(pc, candidates, callback) {
pc.onicecandidate = function(evt) {
if (evt.candidate) {
console.log(evt);
candidates.push(evt.candidate);
}
else {
callback();
}
};
};
| Remove the timer for monitoring the icegatheringstate | Remove the timer for monitoring the icegatheringstate
| JavaScript | bsd-2-clause | ssaroha/node-webrtc,vshymanskyy/node-webrtc,lresc/node-webrtc,siphontv/node-webrtc,martindale/node-webrtc,martindale/node-webrtc,diffalot/node-webrtc,martindale/node-webrtc,siphontv/node-webrtc,siphontv/node-webrtc,ssaroha/node-webrtc,ssaroha/node-webrtc,siphontv/node-webrtc,guymguym/node-webrtc,martindale/node-webrtc,... |
088a0c67588f9334eb8dbed9447055eff3fbfe30 | example/controllers/football.js | example/controllers/football.js | 'use strict'
module.exports = (function(){
/**
* Import modules
*/
const footballDb = require('./../db/footballDb')
/**
* football module API
*/
return {
'leagues': leagues,
'leagueTable_id': leagueTable_id
}
/**
* football module API --... | 'use strict'
module.exports = (function(){
/**
* Import modules
*/
const footballDb = require('./../db/footballDb')
/**
* football module API
*/
return {
'leagues': leagues,
'leagueTable_id': leagueTable_id
}
/**
* football module API --... | Correct comment on parsing route parameters instead of query | Correct comment on parsing route parameters instead of query
| JavaScript | mit | CCISEL/connect-controller,CCISEL/connect-controller |
5a63f87a9bf6fa7c4ce54f7c5f650b85190fd930 | fetch-browser.js | fetch-browser.js | (function () {
'use strict';
function fetchPonyfill(options) {
var Promise = options && options.Promise || self.Promise;
var XMLHttpRequest = options && options.XMLHttpRequest || self.XMLHttpRequest;
var global = self;
return (function () {
var self = Object.create(global, {
fetch: {... | (function () {
'use strict';
function fetchPonyfill(options) {
var Promise = options && options.Promise || self.Promise;
var XMLHttpRequest = options && options.XMLHttpRequest || self.XMLHttpRequest;
var global = self;
return (function () {
var self = Object.create(global, {
fetch: {... | Remove global binding that is now not needed anymore | Remove global binding that is now not needed anymore
| JavaScript | mit | qubyte/fetch-ponyfill,qubyte/fetch-ponyfill |
2cb746c292c9c68d04d9393eeccdf398573a84af | build/tests/bootstrap.js | build/tests/bootstrap.js | // Remove the PUBLIC_URL, if defined
process.env.PUBLIC_URL = ''
process.env.INSPIRE_API_URL = 'inspire-api-url'
require('babel-register')()
const { jsdom } = require('jsdom')
const moduleAlias = require('module-alias')
const path = require('path')
moduleAlias.addAlias('common', path.join(__dirname, '../../src'))
... | const { JSDOM } = require('jsdom')
const moduleAlias = require('module-alias')
const path = require('path')
require('babel-register')()
moduleAlias.addAlias('common', path.join(__dirname, '../../src'))
// Remove the PUBLIC_URL, if defined
process.env.PUBLIC_URL = ''
process.env.INSPIRE_API_URL = 'inspire-api-url'
... | Update JSDOM usage due to API change | Update JSDOM usage due to API change
| JavaScript | mit | sgmap/inspire,sgmap/inspire |
c14bea03e77d0b7573ae087c879cadfc3ca9c970 | firefox/prefs.js | firefox/prefs.js | user_pref("accessibility.typeaheadfind.flashBar", 0);
user_pref("accessibility.typeaheadfind.prefillwithselection", true);
user_pref("browser.backspace_action", 2);
user_pref("browser.bookmarks.restore_default_bookmarks", false);
user_pref("browser.newtab.url", "about:blank");
user_pref("browser.search.suggest.enabled"... | user_pref("accessibility.typeaheadfind.flashBar", 0);
user_pref("accessibility.typeaheadfind.prefillwithselection", true);
user_pref("browser.backspace_action", 2);
user_pref("browser.bookmarks.restore_default_bookmarks", false);
user_pref("browser.newtab.url", "about:blank");
user_pref("browser.readinglist.enabled", f... | Disable a few unused features | firefox: Disable a few unused features
| JavaScript | mit | poiru/dotfiles,poiru/dotfiles,poiru/dotfiles |
9d43d46eac238af0ac1a038916e6ebe21383fc95 | gatsby-config.js | gatsby-config.js | module.exports = {
siteMetadata: {
siteUrl: 'https://chocolate-free.com/',
title: 'Chocolate Free',
},
plugins: [
{
resolve: 'gatsby-source-contentful',
options: {
spaceId: '0w6gaytm0wfv',
accessToken: 'c9414fe612e8c31f402182354c5263f9c6b1f0c611ae5597585cb78692dc2493',
... | module.exports = {
siteMetadata: {
siteUrl: 'https://chocolate-free.com/',
title: 'Chocolate Free',
},
plugins: [
{
resolve: 'gatsby-source-contentful',
options: {
spaceId: process.env.CHOCOLATE_FREE_CF_SPACE,
accessToken: process.env.CHOCOLATE_FREE_CF_TOKEN
},
},... | Replace api key with env vars | Replace api key with env vars
| JavaScript | apache-2.0 | Khaledgarbaya/chocolate-free-website,Khaledgarbaya/chocolate-free-website |
930bcf06b7cca0993d0c13250b1ae7bd484643ba | src/js/routes.js | src/js/routes.js | 'use strict';
angular.module('mission-control').config(['$stateProvider', '$urlRouterProvider',
function ($stateProvider, $urlRouterProvider) {
// For unmatched routes
$urlRouterProvider.otherwise('/');
// Application routes
$stateProvider
.state('index', {
url: '/',
templateUr... | 'use strict';
angular.module('mission-control').config(['$stateProvider', '$urlRouterProvider',
function ($stateProvider, $urlRouterProvider) {
// For unmatched routes
$urlRouterProvider.otherwise('/');
// Application routes
$stateProvider
.state('index', {
url: '/',
templateUr... | Add mentors route to router | Add mentors route to router
| JavaScript | mit | craigcabrey/mission-control,craigcabrey/mission-control |
b40447a79ed4d94ba05e379e4192556c271a1e4b | test/browser.spec.js | test/browser.spec.js | var expect = require('chai').expect;
var request = require('supertest');
var http = require('http');
var cookie = require('../lib/browser');
describe('server-side cookie', function() {
describe('.set', function() {
it('should work', function() {
cookie.set('yolo', 'swag');
expect(cookie.get('yolo')).... | var expect = require('chai').expect;
var request = require('supertest');
var http = require('http');
var cookie = require('../lib/browser');
describe('server-side cookie', function() {
describe('.get', function() {
it('should work', function() {
expect(cookie.get('swag_swag_swag_')).to.be.undefined;
})... | Add simple test case for browser `.get` | Add simple test case for browser `.get`
| JavaScript | mit | srph/cookie-machine |
09c0f85065d496bec9e869f3ec170648b99f77c9 | lib/middleware/request_proxy.js | lib/middleware/request_proxy.js | // Copyright (C) 2007-2014, GoodData(R) Corporation.
var httpProxy = require('http-proxy');
module.exports = function(host) {
var currentHost, currentPort;
var proxy = new httpProxy.RoutingProxy({
target: {
https: true
}
});
var requestProxy = function(req, res, next) {
... | // Copyright (C) 2007-2014, GoodData(R) Corporation.
var httpProxy = require('http-proxy');
module.exports = function(host) {
var currentHost, currentPort;
var proxy = new httpProxy.RoutingProxy({
target: {
https: true
}
});
var requestProxy = function(req, res, next) {
... | Set referer header to prevent CSRF | Set referer header to prevent CSRF
| JavaScript | bsd-3-clause | gooddata/grunt-grizzly,crudo/grunt-grizzly |
6e6ec8c967ddb486a979a267016e7eb2b5c7ff4d | eachSeries.js | eachSeries.js | import when from 'when';
let
openFiles = ['a.js', 'b.js', 'c.js'],
saveFile = (file) => {
console.log('saveFile', file);
return new Promise((resolve, reject) => {
setTimeout(
() => {
console.log('timeout', file);
resolve(file);... | import when from 'when';
let
openFiles = ['a.js', 'b.js', 'c.js'],
saveFile = (file) => {
console.log('saveFile', file);
return new Promise((resolve, reject) => {
setTimeout(
() => {
console.log('timeout', file);
resolve(file);... | Update each series results to be embedded in the reduce | Update each series results to be embedded in the reduce
| JavaScript | mit | jgornick/asyncp |
f7d374595d08b3421f0da67932f5fcbb7a092e8d | src/lib/watch.js | src/lib/watch.js | "use strict";
var db = require("./firebase");
// Ensure the updated timestamp is always accurate-ish
module.exports = function(ref) {
ref.on("child_changed", function(snap) {
var key = snap.key(),
auth;
// Avoid looping forever
if(key === "updated_at" || key === "updat... | "use strict";
var db = require("./firebase");
// Ensure the updated timestamp is always accurate-ish
module.exports = function(ref) {
ref.on("child_changed", function(snap) {
var key = snap.key(),
auth;
// Avoid looping forever
if(key === "updated_at" || key === "updat... | Convert two .set() calls into one .update() | Convert two .set() calls into one .update()
| JavaScript | mit | tivac/crucible,Ryan-McMillan/crucible,kevinkace/crucible,tivac/anthracite,kevinkace/crucible,tivac/anthracite,tivac/crucible,Ryan-McMillan/crucible |
3b0ea4f643c065a14b8bd79d27111e69d3698b2b | erisevents.js | erisevents.js | const eris = justcord.eris;
const config = justcord.config;
const chat = justcord.chat;
eris.on("ready", () => {
console.log("Justcord ready!"); // TODO: Add logging utility functions
eris.createMessage(config.eris.id, "Server connected to the guild successfully!")
});
eris.on("messageCreate", (message) => {
... | const eris = justcord.eris;
const config = justcord.config;
const chat = justcord.chat;
eris.on("ready", () => {
console.log("Justcord ready!"); // TODO: Add logging utility functions
eris.createMessage(config.eris.id, "Server connected to the guild successfully!")
});
eris.on("messageCreate", (message) => {
... | Use username if nickname is null | Use username if nickname is null
| JavaScript | mit | md678685/justcord-3 |
560f6420d7681201cb404eb39e80f3000102e53c | lib/_memoize-watcher.js | lib/_memoize-watcher.js | 'use strict';
var noop = require('es5-ext/function/noop')
, assign = require('es5-ext/object/assign')
, memoize = require('memoizee')
, ee = require('event-emitter')
, deferred = require('deferred')
, isPromise = deferred.isPromise;
module.exports = function (fn/*, options*/) {
var factory, m... | 'use strict';
var noop = require('es5-ext/function/noop')
, assign = require('es5-ext/object/assign')
, memoize = require('memoizee')
, ee = require('event-emitter')
, eePipe = require('event-emitter/lib/pipe')
, deferred = require('deferred')
, isPromise = deferred.isPromise;
module.expor... | Update up to changes in event-emitter package | Update up to changes in event-emitter package
| JavaScript | isc | medikoo/fs2 |
79c32b103f5cbd76b5f9d287c89372704cfbc35e | bin/setup.js | bin/setup.js | #!/usr/bin/env node
// Must symlink the generator from xtc's modules up to the project's modules.
// Else Yeoman won't find it.
var path = require('path')
fs = require('fs')
;
// process.cwd() == __dirname
if ('install' === process.env.npm_lifecycle_event) {
try {
fs.symlinkSync(path.join(process.cwd(), '/node... | #!/usr/bin/env node
// Must symlink the generator from xtc's modules up to the project's modules.
// Else Yeoman won't find it.
var path = require('path')
fs = require('fs')
;
// process.cwd() == __dirname
if ('install' === process.env.npm_lifecycle_event) {
try {
fs.symlinkSync(path.join(process.cwd(), '/node... | Fix typo in error message | Fix typo in error message
| JavaScript | mit | MarcDiethelm/xtc |
24bd88bb2965515ac7f9ffecde850e7f63ce23a5 | app/scripts/app/routes/items.js | app/scripts/app/routes/items.js | var ItemsRoute = Em.Route.extend({
model: function (params) {
return this.api.fetchAll('items', 'groups', params.group_id);
},
setupController: function (controller, model) {
// allow sub-routes to access the GroupId since it seems the dynamic segment is not available otherwise
controller.set('GroupI... | var ItemsRoute = Em.Route.extend({
model: function (params) {
this.set('currentGroupId', parseInt(params.group_id, 10));
return this.api.fetchAll('items', 'groups', params.group_id);
},
setupController: function (controller, model) {
// allow sub-routes to access the GroupId since it seems the dynami... | Fix setting GroupId on ItemsController when its model is empty | Fix setting GroupId on ItemsController when its model is empty
| JavaScript | mit | darvelo/wishlist,darvelo/wishlist |
51e2104a004ca63fb1e7f5262e61441b558bd288 | packages/react-native-version-check-expo/src/ExpoVersionInfo.js | packages/react-native-version-check-expo/src/ExpoVersionInfo.js | let RNVersionCheck;
if (process.env.RNVC_ENV === 'test') {
RNVersionCheck = {
country: 'ko',
packageName: 'com.reactnative.versioncheck',
currentBuildNumber: 1,
currentVersion: '0.0.1',
};
} else {
const { Platform } = require('react-native');
const { Constants, Util } = require('expo');
cons... | let RNVersionCheck;
if (process.env.RNVC_ENV === 'test') {
RNVersionCheck = {
country: 'ko',
packageName: 'com.reactnative.versioncheck',
currentBuildNumber: 1,
currentVersion: '0.0.1',
};
} else {
const { Platform } = require('react-native');
const { Constants, Localization, Util } = require('e... | Use `Localization.getCurrentDeviceCountryAsync` if its version of expo is over 26 since it's deprecated. | Use `Localization.getCurrentDeviceCountryAsync` if its version of expo is over 26 since it's deprecated.
ref:https://github.com/expo/expo-docs/tree/master/versions/v26.0.0/sdk
| JavaScript | mit | kimxogus/react-native-version-check,kimxogus/react-native-version-check,kimxogus/react-native-version-check |
c1b67784c26c4c2658446dddbed92ef44b8bd84a | web/src/js/app/views/ViewportView.js | web/src/js/app/views/ViewportView.js | cinema.views.ViewportView = Backbone.View.extend({
initialize: function () {
this.$el.html(cinema.app.templates.viewport());
this.camera = new cinema.models.CameraModel({
info: this.model
});
this.renderView = new cinema.views.VisualizationCanvasWidget({
el... | cinema.views.ViewportView = Backbone.View.extend({
initialize: function (opts) {
this.$el.html(cinema.app.templates.viewport());
this.camera = opts.camera || new cinema.models.CameraModel({
info: this.model
});
this.renderView = new cinema.views.VisualizationCanvasWidg... | Allow viewport to be initialized with a pre-existing camera model | Allow viewport to be initialized with a pre-existing camera model
| JavaScript | bsd-3-clause | Kitware/cinema,Kitware/cinema,Kitware/cinema,Kitware/cinema |
1c7c553128fcc842f394c429dfc28dbce934fb86 | pegasus/sites.v3/code.org/public/js/applab-docs.js | pegasus/sites.v3/code.org/public/js/applab-docs.js | /*global CodeMirror*/
$(function() {
$('pre').each(function() {
var preElement = $(this);
var code = dedent(preElement.text()).trim();
preElement.empty();
CodeMirror(this, {
value: code,
mode: 'javascript',
lineNumbers: !preElement.is('.inline'),
readOnly: true
});
});
... | /*global CodeMirror*/
$(function() {
$('pre').each(function() {
var preElement = $(this);
var code = dedent(preElement.text()).trim();
preElement.empty();
CodeMirror(this, {
value: code,
mode: 'javascript',
lineNumbers: !preElement.is('.inline'),
readOnly: true
});
});
... | Rewrite documentation urls to forward on the embedded flag | Rewrite documentation urls to forward on the embedded flag
| JavaScript | apache-2.0 | rvarshney/code-dot-org,pickettd/code-dot-org,rvarshney/code-dot-org,dillia23/code-dot-org,pickettd/code-dot-org,rvarshney/code-dot-org,dillia23/code-dot-org,pickettd/code-dot-org,pickettd/code-dot-org,dillia23/code-dot-org,pickettd/code-dot-org,rvarshney/code-dot-org,dillia23/code-dot-org,pickettd/code-dot-org,rvarshne... |
45c28fca5c5bfad96691fb61b71967f3eb38ffe6 | brainfuck.js | brainfuck.js | (function(global) {
'use strict';
(function(id) {
var i, j;
var tab = document.getElementById(id);
var thead = tab.querySelector('thead');
var tbody = tab.querySelector('tbody');
var tr, th, td;
// tr = document.createElement('tr');
// th = document.creat... | (function(global) {
'use strict';
(function(id) {
var i, j;
var tab = document.getElementById(id);
var thead = tab.querySelector('thead');
var tbody = tab.querySelector('tbody');
var tr, th, td;
// tr = document.createElement('tr');
// th = document.creat... | Add ids to the markup | Add ids to the markup
| JavaScript | mit | Lexicality/esolang,Lexicality/esolang |
2cdd929e7ee6924387e0f96a84c080d111de6604 | config/secrets.js | config/secrets.js | module.exports = {
db: process.env.MONGODB || process.env.MONGOHQ_URL || 'mongodb://localhost:27017/gamekeller',
sessionSecret: process.env.SESSION_SECRET || 'gkdevel'
} | module.exports = {
db: process.env.MONGODB || 'mongodb://localhost:27017/gamekeller',
sessionSecret: process.env.SESSION_SECRET || 'gkdevel'
} | Remove support for MONGOHQ_URL env variable | Remove support for MONGOHQ_URL env variable
| JavaScript | mit | gamekeller/next,gamekeller/next |
790b051f536065f97da5699f9d9332391d4ec97a | config/targets.js | config/targets.js | /* eslint-env node */
module.exports = {
browsers: [
'ie 9',
'last 1 Chrome versions',
'last 1 Firefox versions',
'last 1 Safari versions'
]
};
| /* eslint-env node */
// Which browsers are returned can be found at http://browserl.ist/
module.exports = {
browsers: [
'last 1 edge versions',
'last 1 chrome versions',
'firefox esr', //actually points to the last 2 ESR releases as they overlap
'last 1 safari versions',
'last 1 ios versions',
... | Drop support for older browsers | Drop support for older browsers
By only targeting modern evergreen browsers in our build we can
significantly reduce the amount of extra code we generate to be
compatible with older browsers. This will make our application smaller
to download and faster to parse.
| JavaScript | mit | thecoolestguy/frontend,thecoolestguy/frontend,djvoa12/frontend,ilios/frontend,dartajax/frontend,jrjohnson/frontend,dartajax/frontend,ilios/frontend,jrjohnson/frontend,djvoa12/frontend |
7f84fd91f2196394261e287b0048ea30612858b3 | index.js | index.js | var through = require('through2');
var choppa = function(chunkSize) {
chunkSize = chunkSize === undefined ? 1 : chunkSize;
var prev = new Buffer(0);
var transform = function(chunk, enc, cb) {
chunk = Buffer.concat([prev, chunk]);
var self = this;
if (chunkSize > 0) {
while (chunk.length >= chu... | var through = require('through2');
var choppa = function(chunkSize) {
chunkSize = chunkSize === undefined ? 1 : chunkSize;
var prev = new Buffer(0);
var transform = function(chunk, enc, cb) {
chunk = Buffer.concat([prev, chunk]);
var self = this;
if (chunkSize > 0) {
while (chunk.length >= chu... | Fix async reads from the choppa. | Fix async reads from the choppa. | JavaScript | mit | sorribas/choppa |
f5f96e1458e43f2360f16297b8e52eb71c666d8d | index.js | index.js | var aglio = require('aglio');
var through2 = require('through2');
var gutil = require('gulp-util');
var PluginError = gutil.PluginError;
var defaults = require('lodash.defaults');
var path = require('path');
module.exports = function (options) {
'use strict';
// Mixes in default options.
options = defaults(optio... | var aglio = require('aglio');
var through2 = require('through2');
var gutil = require('gulp-util');
var PluginError = gutil.PluginError;
var defaults = require('lodash.defaults');
var path = require('path');
module.exports = function (options) {
'use strict';
// Mixes in default options.
options = defaults(optio... | Fix error when files are not found | :bug: Fix error when files are not found
Using include syntax with a wrong path resulted in a crash without emitting an error message. | JavaScript | mit | nnnnathann/gulp-aglio,nnnnathann/gulp-aglio |
43b808affcd475e7ad94e4f494c306334323dbb3 | index.js | index.js | const getJSON = require('get-json');
const overpass = 'http://overpass-api.de/api/interpreter?data=';
const query = '[out:json];way[%22highway%22](around:50,51.424037,-0.148666);out;';
getJSON(`${overpass}${query}`, (err, result) => {
if (err) console.log(err);
console.log(result);
});
| const getJSON = require('get-json');
const overpass = 'http://overpass-api.de/api/interpreter?data=';
const lat = 51.424037;
const long = -0.148666;
const distance = 50;
const query = `[out:json]; way["highway"](around:${distance},${lat},${long}); out;`;
getJSON(`${overpass}${query}`, (err, result) => {
if (err) ... | Use templates to cleanup query | Use templates to cleanup query
| JavaScript | mit | mkhalila/nearest-roads |
74f1842a096c184982a94d4fc5a95c1a90d18a63 | index.js | index.js | var qs = require('querystring')
module.exports = function (network, url, opts) {
opts = opts || {}
if (!linkfor[network]) throw new Error('Unsupported network ' + network)
return linkfor[network](url, opts)
}
var linkfor = {
facebook: function (url, opts) {
var share = {
u: url
}
if (opts... | var qs = require('querystring')
module.exports = function (network, url, opts) {
opts = opts || {}
if (!linkfor[network]) throw new Error('Unsupported network ' + network)
return linkfor[network](url, opts)
}
var linkfor = {
facebook: function (url, opts) {
var share = {
u: url
}
if (opts... | Add google+ as alias for googleplus | Add google+ as alias for googleplus
| JavaScript | mit | tableflip/share-my-url |
64c4b12d5300c2a52b56b150f7202757c4d7c958 | index.js | index.js | var _ = require('lodash');
var postcss = require('postcss');
var SEProperties = require('swedish-css-properties');
var SEValues = require('swedish-css-values');
module.exports = postcss.plugin('postcss-swedish-stylesheets', function (opts) {
opts = opts || {
properties: {},
values: {}
};
... | const _ = require('lodash');
const SEProperties = require('swedish-css-properties');
const SEValues = require('swedish-css-values');
const postcssSwedishStylesheets = (opts = {}) => {
if (_.isObject(opts.properties)) {
_.merge(SEProperties, opts.properties);
}
if (_.isObject(opts.values)) {
_.merge(SEVa... | Update plugin to use PostCSS 8 | feat: Update plugin to use PostCSS 8
| JavaScript | mit | johnie/postcss-swedish-stylesheets |
e53f9e79ce9b90480f11341a7427e6e8a63ca65a | index.js | index.js | var exec = require('child_process').exec;
module.exports = function sysPrefix() {
return new Promise(function(resolve, reject) {
exec('python -c \'import sys; print(sys.prefix)\'',
function(err, stdout) {
if (err !== null) {
reject(err);
}
else {
resolve(stdout.to... | var exec = require('child_process').exec;
module.exports = function sysPrefix() {
return new Promise(function(resolve, reject) {
exec('python -c "import sys; print(sys.prefix)"',
function(err, stdout) {
if (err !== null) {
reject(err);
}
else {
resolve(stdout.toSt... | Switch to double quotes inside the exec | Switch to double quotes inside the exec
This allows the exec call to work properly with Windows.
| JavaScript | apache-2.0 | rgbkrk/sys-prefix-promise |
a2ac0281ef8e4a489b87553edec11f650418ef83 | index.js | index.js | const express = require('express');
const shortUrlController = require('./lib/short-url-controller.js');
const stubController = require('./lib/stub-controller.js');
const logger = require('winston');
const port = process.env.PORT || 5000;
const app = express();
app.set('view engine', 'pug');
app.use('/', stubControll... | require('dotenv').config();
const express = require('express');
const shortUrlController = require('./lib/short-url-controller.js');
const stubController = require('./lib/stub-controller.js');
const logger = require('winston');
const port = process.env.PORT || 5000;
const app = express();
app.set('view engine', 'pug'... | Fix dotenv to work locally instead of just on heroku | Fix dotenv to work locally instead of just on heroku
| JavaScript | mit | glynnw/url-shortener,glynnw/url-shortener |
4e9b368ea408768aa52b44660b564fa23d344781 | index.js | index.js | /*!
* array-last <https://github.com/jonschlinkert/array-last>
*
* Copyright (c) 2014 Jon Schlinkert, contributors.
* Licensed under the MIT license.
*/
var isNumber = require('is-number');
module.exports = function last(arr, n) {
if (!Array.isArray(arr)) {
throw new Error('expected the first argument to b... | /*!
* array-last <https://github.com/jonschlinkert/array-last>
*
* Copyright (c) 2014 Jon Schlinkert, contributors.
* Licensed under the MIT license.
*/
var isNumber = require('is-number');
module.exports = function last(arr, n) {
if (!Array.isArray(arr)) {
throw new Error('expected the first argument to b... | Return a single value when n=1 | Return a single value when n=1
* Worked previously: last([1], 1) === 1
* Broken previously: last([1, 2], 1) === 2
| JavaScript | mit | jonschlinkert/array-last |
bb273759bbb9f9edb716fa6596477fa019057fec | index.js | index.js | /* jshint node: true */
'use strict';
var fs = require('fs');
module.exports = {
name: 'uncharted-describe-models',
config: function(env, config) {
if (env === 'test') {
return;
}
if (!fs.existsSync('app/schema.json')) {
throw new Error('You must include a schema.json in the root of app/... | /* jshint node: true */
'use strict';
var fs = require('fs');
module.exports = {
name: 'uncharted-describe-models',
config: function(env, config) {
if (!fs.existsSync('app/schema.json')) {
throw new Error('You must include a schema.json in the root of app/');
}
var schema = JSON.parse(fs.readF... | Make sure we always load the schema, even within a test | Make sure we always load the schema, even within a test
| JavaScript | mit | unchartedcode/describe-models,unchartedcode/describe-models |
206a09a32b2f41f19c7340ec599e5d73e86d8cfc | index.js | index.js | var restify = require('restify');
var messenger = require('./lib/messenger');
var session = require('./lib/session');
var server = restify.createServer();
server.use(restify.queryParser());
server.use(restify.bodyParser());
server.use(restify.authorizationParser());
server.get('/', function (req, res, next) {
res... | var restify = require('restify');
var messenger = require('./lib/messenger');
var session = require('./lib/session');
var server = restify.createServer();
server.use(restify.queryParser());
server.use(restify.bodyParser());
server.use(restify.authorizationParser());
server.get('/', function (req, res, next) {
res... | Send HTTP responses for all messages | Send HTTP responses for all messages
| JavaScript | mpl-2.0 | rockawayhelp/emergencybadges,rockawayhelp/emergencybadges |
b069edce8a3e82dc64e34678db4dd7fe5c508aa3 | index.js | index.js | // var http = require("http");
// app.set('view engine', 'html');
var express = require('express');
var app = express();
app.use(express.static(__dirname + '/views'));
app.use(express.static(__dirname + '/scripts'));
app.listen(3000, function () {
console.log('Example app listening on port 3000!')
})
app.get('/', f... | // var http = require("http");
// app.set('view engine', 'html');
var express = require('express');
var app = express();
app.use(express.static(__dirname + '/views'));
app.use(express.static(__dirname + '/scripts'));
app.listen(3000, function () {
console.log('Example app listening on port 3000!')
})
app.get('/', f... | Add info on setting parameters in route | Add info on setting parameters in route
| JavaScript | apache-2.0 | XanderPSON/febrezehackathon,XanderPSON/febrezehackathon |
992c7b2c2cc3f73eaef974a5c885da6fe27ebd6c | index.js | index.js | module.exports = {
handlebars: require('./lib/handlebars'),
marked: require('./lib/marked'),
componentTemplate: 'node_modules/foundation-docs/templates/component.html',
handlebarsHelpers: 'node_modules/foundation-docs/helpers/'
}
| var path = require('path');
var TEMPLATE_PATH = path.join(__dirname, 'templates/component.html');
var HELPERS_PATH = path.join(__dirname, 'helpers');
module.exports = {
handlebars: require('./lib/handlebars'),
marked: require('./lib/marked'),
componentTemplate: path.relative(process.cwd(), TEMPLATE_PATH),
han... | Use relative paths for componentTemplate and handlebarsHelpers paths | Use relative paths for componentTemplate and handlebarsHelpers paths
| JavaScript | mit | zurb/foundation-docs,zurb/foundation-docs |
d60976582c1c4f8035a41e59c36489f5fbe95be1 | index.js | index.js | var Map = require('./lib/map'),
Format = require('./lib/format'),
safe64 = require('./lib/safe64');
module.exports = {
Map: Map,
Format: Format,
safe64: safe64,
pool: function(datasource) {
return {
create: function(callback) {
var resource = new Map(datasour... | var Map = require('./lib/map'),
Format = require('./lib/format'),
safe64 = require('./lib/safe64');
module.exports = {
Map: Map,
Format: Format,
safe64: safe64,
pool: function(datasource) {
return {
create: function(callback) {
var resource = new Map(datasour... | Update tilelive pool factory create method to pass errors. | Update tilelive pool factory create method to pass errors.
| JavaScript | bsd-3-clause | dshorthouse/tilelive-mapnik,CartoDB/tilelive-mapnik,mapbox/tilelive-mapnik,tomhughes/tilelive-mapnik,wsw0108/tilesource-mapnik |
93d89dfef836e493dc2a13b18ff08ee6b020cc91 | index.js | index.js | "use strict";
const util = require("gulp-util");
const through = require("through2");
const moment = require("moment");
module.exports = function(options) {
options = options || {};
function updateDate(file, options) {
const now = moment().format("YYYY/MM/DD"),
regex = /Last updated: (\d{4}\/\d{2... | "use strict";
const util = require("gulp-util");
const through = require("through2");
const moment = require("moment");
module.exports = function(options) {
options = options || {};
function updateDate(file, options) {
const now = moment().format("YYYY/MM/DD"),
regex = /Last updated?: ?(\d{4}\/\d... | Make the 'd' in 'updated' optional along with the space before the date | Make the 'd' in 'updated' optional along with the space before the date
| JavaScript | mit | Pinjasaur/gulp-update-humanstxt-date |
3e0998496283eb83b66f97d765e069a470f3ba5d | index.js | index.js | 'use strict';
module.exports = {
name: 'live-reload-middleware',
serverMiddleware: function(options) {
var app = options.app;
options = options.options;
if (options.liveReload === true) {
var livereloadMiddleware = require('connect-livereload');
app.use(livereloadMiddleware({
por... | 'use strict';
module.exports = {
name: 'live-reload-middleware',
serverMiddleware: function(options) {
var app = options.app;
options = options.options;
if (options.liveReload === true) {
var livereloadMiddleware = require('connect-livereload');
app.use(livereloadMiddleware({
ign... | Fix ignore list to work with query string params. | Fix ignore list to work with query string params.
| JavaScript | mit | jbescoyez/ember-cli-inject-live-reload,rwjblue/ember-cli-inject-live-reload,scottkidder/ember-cli-inject-live-reload |
688146ec463c255b6000ce72a4462dff1a99cb3c | gatsby-browser.js | gatsby-browser.js | import ReactGA from 'react-ga'
import {config} from 'config'
ReactGA.initialize(config.googleAnalyticsId);
exports.onRouteUpdate = (state, page, pages) => {
ReactGA.pageview(state.pathname);
}; | import ReactGA from 'react-ga'
import {config} from 'config'
ReactGA.initialize(config.googleAnalyticsId);
ReactGA.plugin.require('linkid');
exports.onRouteUpdate = (state, page, pages) => {
ReactGA.pageview(state.pathname);
};
| Add linkid to google analytics | Add linkid to google analytics
| JavaScript | bsd-3-clause | tadeuzagallo/blog,tadeuzagallo/blog |
8f82186dfb27825a7b2220f9a6c3f66346f0f300 | worker/web_client/JobStatus.js | worker/web_client/JobStatus.js | import JobStatus from 'girder_plugins/jobs/JobStatus';
JobStatus.registerStatus({
WORKER_FETCHING_INPUT: {
value: 820,
text: 'Fetching input',
icon: 'icon-download',
color: '#89d2e2'
},
WORKER_CONVERTING_INPUT: {
value: 821,
text: 'Converting input',
... | import JobStatus from 'girder_plugins/jobs/JobStatus';
JobStatus.registerStatus({
WORKER_FETCHING_INPUT: {
value: 820,
text: 'Fetching input',
icon: 'icon-download',
color: '#89d2e2'
},
WORKER_CONVERTING_INPUT: {
value: 821,
text: 'Converting input',
... | Add button to cancel job | WIP: Add button to cancel job
| JavaScript | apache-2.0 | girder/girder_worker,girder/girder_worker,girder/girder_worker |
2e8c529dee0385daf201ecb5fca2e1d4b69d9376 | jest-setup.js | jest-setup.js | import Enzyme from 'enzyme';
import Adapter from 'enzyme-adapter-react-16';
// Configure Enzyme
Enzyme.configure({ adapter: new Adapter() });
// Add RAF for React 16
global.requestAnimationFrame = function requestAnimationFrame(callback) {
setTimeout(callback, 0);
};
| const Enzyme = require('enzyme');
const Adapter = require('enzyme-adapter-react-16');
// Configure Enzyme
Enzyme.configure({ adapter: new Adapter() });
// Add RAF for React 16
global.requestAnimationFrame = function requestAnimationFrame(callback) {
setTimeout(callback, 0);
};
| Use require() instead of import(). | Use require() instead of import().
| JavaScript | mit | milesj/build-tool-config,milesj/build-tool-config,milesj/build-tool-config |
441dd784316cf734126b0ca95116070bd6147189 | js/components.js | js/components.js | class SearchBox extends React.Component {
// constructor(){
// super();
// this.state = {
// searched:false;
// };
// }
render() {
return (
<div>
CLICK AND HIT ENTER TO SEARCH
<form className="search-form" onSubmit={this._handleSubmit.bind(this)}>
<input placehol... | Write first component and start first API call | Write first component and start first API call
| JavaScript | mit | scottychou/WikipediaViewer,scottychou/WikipediaViewer | |
a1e21bd2df72b0bfd54d2d5ecdab766d6390f785 | packages/core/lib/commands/db/commands/serve.js | packages/core/lib/commands/db/commands/serve.js | const command = {
command: "serve",
description: "Start Truffle's GraphQL UI playground",
builder: {},
help: {
usage: "truffle db serve",
options: []
},
/* This command does starts an express derived server that invokes
* `process.exit()` on SIGINT. As a result there is no need to invoke
* tr... | const command = {
command: "serve",
description: "Start Truffle's GraphQL UI playground",
builder: {},
help: {
usage: "truffle db serve",
options: []
},
/* This command does starts an express derived server that invokes
* `process.exit()` on SIGINT. As a result there is no need to invoke
* tr... | Make the port attribute lowercase | Make the port attribute lowercase
```
// truffle-config.js
{
// ...
db: {
port: 69420
}
}
```
| JavaScript | mit | ConsenSys/truffle |
b0ae69002cb6b5e9b3a2e7bee82c5fea1cd6677f | client/index.js | client/index.js | import React from 'react'
import ReactDOM from 'react-dom'
import { AppContainer } from 'react-hot-loader'
import App from './containers/App'
ReactDOM.render(
<AppContainer>
<App/>
</AppContainer>,
document.getElementById('root')
)
if (module.hot) {
module.hot.accept('./containers/App', () => {
// If ... | import React from 'react'
import ReactDOM from 'react-dom'
import { AppContainer } from 'react-hot-loader'
import App from './containers/App'
ReactDOM.render(
<AppContainer>
<App/>
</AppContainer>,
document.getElementById('root')
)
if (module.hot) {
module.hot.accept('./containers/App', () => {
// If ... | Add line break at end of file | Add line break at end of file
| JavaScript | mit | shinosakarb/tebukuro-client |
6cacd255d4c963af7454da36656926f213b676f8 | client/index.js | client/index.js | require('jquery')
require('expose?$!expose?jQuery!jquery')
require("bootstrap-webpack")
require('./less/index.less')
| require('jquery')
require('expose?$!expose?jQuery!jquery')
require("bootstrap-webpack")
require('./less/index.less')
$.get('http://10.90.100.1:8080/signalk/v1/api/vessels/self/navigation/position')
.then(res => $.get(`http://www.tuuleeko.fi:8000/nearest-station?lat=${res.latitude}&lon=${res.longitude}`))
.then(sta... | Add POC for showing the closes weather observation data | Add POC for showing the closes weather observation data | JavaScript | apache-2.0 | chacal/nrf-sensor-receiver,chacal/nrf-sensor-receiver,chacal/nrf-sensor-receiver |
b5e2e552814b00858fce4fa844d326e6b3d81bc0 | src/index.js | src/index.js | import * as path from 'path';
import {fs} from 'node-promise-es6';
import * as fse from 'fs-extra-promise-es6';
export default class {
constructor(basePath) {
this.basePath = path.resolve(basePath);
}
async create() {
await fse.mkdirs(this.basePath);
}
path(...components) {
return path.resolve(... | import * as path from 'path';
import {fs} from 'node-promise-es6';
import * as fse from 'fs-extra-promise-es6';
export default class {
constructor(basePath) {
this.basePath = path.resolve(basePath);
}
async create() {
await fse.mkdirs(this.basePath);
}
path(...components) {
return path.resolve(... | Use Object.entries instead of Object.keys | Use Object.entries instead of Object.keys
| JavaScript | mit | vinsonchuong/directory-helpers |
c9e44c6d990f95bb7e92bfa97fc0a74bf636c290 | app/templates/tasks/utils/notify-style-lint.js | app/templates/tasks/utils/notify-style-lint.js | var notify = require("./notify");
module.exports = function notifyStyleLint (stdout) {
var messages = stdout.split("\n");
messages.pop(); // Remove last empty new message.
if(0 < messages.length) {
var message = "{{length}} lint warning(s) found.".replace(/{{length}}/g, messages.length);
notify.showNo... | var notify = require("./notify");
var util = require("util");
module.exports = function notifyStyleLint (stdout) {
var messages = stdout.split("\n");
messages.pop(); // Remove last empty new message.
if(0 < messages.length) {
var message = util.format("%d lint warning(s) found.", messages.length);
n... | Use built-in utils to format the string. | Use built-in utils to format the string.
| JavaScript | mit | rishabhsrao/generator-ironhide-webapp,rishabhsrao/generator-ironhide-webapp,rishabhsrao/generator-ironhide-webapp |
b656897309110504fbc52e2c2048ed5dc3d17e23 | js/sinbad-app.js | js/sinbad-app.js | appRun();
function appRun() {
$(document).ready(function() {
console.log("READY");
$(".loading").hide();
$(".complete").show();
//PAGE SWIPES
$(document).on('pageinit', function(event){
$('.pages').on("swipeleft", function () {
var nextpage = $(this).next('div... | appRun();
function appRun() {
$(document).ready(function() {
console.log("READY");
$(".loading").hide();
$(".complete").show();
//PAGE SWIPES
$(document).on('pageinit', function(event){
$('.pages').on("swipeleft", function () {
var nextpage = $(this).next('div... | Add jquery UI drag/drop functionality | Add jquery UI drag/drop functionality
| JavaScript | mit | andkerel/sinbad-and-the-phonegap,andkerel/sinbad-and-the-phonegap |
0cb6a403de01d6dd60750ac1cc337d1c8f10177b | src/index.js | src/index.js | // @flow
const promiseBindMiddleware = (
{ dispatch } : { dispatch : Function },
) => (next: Function) => (action: Object) => {
if (action && action.promise && typeof action.promise === 'function') {
const { type, metadata, promise, promiseArg } = action
dispatch({
type: `${type}_START`,
metada... | // @flow
const extendBy = (object: Object, { metadata } : { metadata : any }) => {
if (metadata) return { ...object, metadata }
return object
}
const promiseBindMiddleware = (
{ dispatch } : { dispatch : Function },
) => (next: Function) => (action: Object) => {
if (action && action.promise && typeof action.p... | Add meted only if exist | Add meted only if exist
| JavaScript | mit | machnicki/redux-promise-bind |
a549e6988de5071dbbf397c5fd1f894f5ad0a8f7 | assets/js/util/tracking/createDataLayerPush.js | assets/js/util/tracking/createDataLayerPush.js |
/**
* Internal dependencies
*/
import { DATA_LAYER } from './index.private';
/**
* Returns a function which, when invoked will initialize the dataLayer and push data onto it.
*
* @param {Object} target Object to enhance with dataLayer data.
* @return {Function} Function that pushes data onto the dataLayer.
*/
... |
/**
* Internal dependencies
*/
import { DATA_LAYER } from './index.private';
/**
* Returns a function which, when invoked will initialize the dataLayer and push data onto it.
*
* @param {Object} target Object to enhance with dataLayer data.
* @return {Function} Function that pushes data onto the dataLayer.
*/
... | Refactor dataLayerPush to use func.arguments. | Refactor dataLayerPush to use func.arguments.
| JavaScript | apache-2.0 | google/site-kit-wp,google/site-kit-wp,google/site-kit-wp,google/site-kit-wp |
f6cb55ec87878fdd2849dc4ba5ea6bd19b6c96c0 | Analyser/src/Models/FnModels.js | Analyser/src/Models/FnModels.js | export default function(state, ctx, model, helpers) {
const ConcretizeIfNative = helpers.ConcretizeIfNative;
//TODO: Test IsNative for apply, bind & call
model.add(Function.prototype.apply, ConcretizeIfNative(Function.prototype.apply));
model.add(Function.prototype.call, ConcretizeIfNative(Function.prototype.call... | export default function(state, ctx, model, helpers) {
const ConcretizeIfNative = helpers.ConcretizeIfNative;
//TODO: Test IsNative for apply, bind & call
model.add(Function.prototype.apply, ConcretizeIfNative(Function.prototype.apply));
model.add(Function.prototype.call, ConcretizeIfNative(Function.prototype.call... | Add a model for Object.assign | Add a model for Object.assign
| JavaScript | mit | ExpoSEJS/ExpoSE,ExpoSEJS/ExpoSE,ExpoSEJS/ExpoSE |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.