commit stringlengths 40 40 | subject stringlengths 1 3.25k | old_file stringlengths 4 311 | new_file stringlengths 4 311 | old_contents stringlengths 0 26.3k | lang stringclasses 3
values | proba float64 0 1 | diff stringlengths 0 7.82k |
|---|---|---|---|---|---|---|---|
394a06a01491cbaffb65eca8b53eb5ecd373902f | use `translate3d` on browsers other than IE | src/js/mixin/internal/slideshow-animations.js | src/js/mixin/internal/slideshow-animations.js | import {css} from 'uikit-util';
export default {
slide: {
show(dir) {
return [
{transform: translate(dir * -100)},
{transform: translate()}
];
},
percent(current) {
return translated(current);
},
transla... | JavaScript | 0 | @@ -4,16 +4,22 @@
ort %7Bcss
+, isIE
%7D from '
@@ -698,55 +698,106 @@
-return %60translateX($%7Bvalue%7D$%7Bvalue ? unit : ''%7D
+value += value ? unit : '';%0A return isIE ? %60translateX($%7Bvalue%7D)%60 : %60translate3d($%7Bvalue%7D, 0, 0
)%60;
@@ -829,18 +829,10 @@
e3d
-to support
+in
IE,
|
2febd299ca7a656cd9d1dd9b313abe7d462426a2 | Add TODO | windows/lib/WinPlatform.js | windows/lib/WinPlatform.js | // Copyright © 2014 Intel Corporation. All rights reserved.
// Use of this source code is governed by an Apache v2
// license that can be found in the LICENSE-APACHE-V2 file.
var Path = require("path");
var ShellJS = require("shelljs");
var WixSDK = require("./WixSDK");
/**
* Interface for project implementat... | JavaScript | 0 | @@ -3578,22 +3578,57 @@
est.
-windowsVendor,
+packageId, // TODO use first 2 parts of packageId
%0A
|
72c7f1c9c3bd14e3b5e3c81c9b586ba1cdade85e | Refactor streaming into two methods. | Controller/middleware/documents/stream.js | Controller/middleware/documents/stream.js | // __Dependencies__
var es = require('event-stream');
var JSONStream = require('JSONStream');
// __Module Definition__
var decorator = module.exports = function () {
this.documents(function (request, response, next) {
var pipes = [];
request.baucis.pipe = function (destination) {
if (destination !== un... | JavaScript | 0 | @@ -97,92 +97,131 @@
/ __
-Module Definition__%0Avar decorator = module.exports = function () %7B%0A this.doc
+Private Module Members__%0A// Genereate a function that will add pipes to an array. Then, when called%0A// with no arg
uments
-(
+,%0A
func
@@ -229,38 +229,43 @@
ion
-(request, response, next
+pipeInter... |
1c231dd301c48c579250097f219dff382b98ad32 | Fix websocket reconnect bug. | web/plates/js/status.js | web/plates/js/status.js | angular.module('appControllers').controller('StatusCtrl', StatusCtrl); // get the main module contollers set
StatusCtrl.$inject = ['$rootScope', '$scope', '$state', '$http', '$interval']; // Inject my dependencies
// create our controller function with all necessary logic
function StatusCtrl($rootScope, $scope, $state... | JavaScript | 0 | @@ -1053,26 +1053,73 @@
%0A%09%09%09
-setTimeout(connect
+delete $scope.socket;%0A%09%09%09setTimeout(function() %7Bconnect($scope);%7D
, 10
|
4133f70902c0c88f511ef8f09b665b2ea4b8dc3a | Revert "[Glitch] Do not re-position scroll when loading more (inserting items from below)" | app/javascript/flavours/glitch/components/scrollable_list.js | app/javascript/flavours/glitch/components/scrollable_list.js | import React, { PureComponent } from 'react';
import { ScrollContainer } from 'react-router-scroll-4';
import PropTypes from 'prop-types';
import IntersectionObserverArticleContainer from 'flavours/glitch/containers/intersection_observer_article_container';
import LoadMore from './load_more';
import IntersectionObserve... | JavaScript | 0 | @@ -2832,17 +2832,16 @@
%3E 0 %7C%7C
-(
this.sta
@@ -2856,33 +2856,8 @@
Over
- && !prevProps.isLoading)
) %7B%0A
|
8b057d51e08c03fd2fea632ccf5c0bddd60b67af | Use RefreshablePureListView instead of PureListView | EduChainApp/js/tabs/tasks/TaskListView.js | EduChainApp/js/tabs/tasks/TaskListView.js | /**
* TODO add partial FB src
*
* @flow
*/
'use strict';
import React from 'react';
import {
Text,
View,
Navigator,
StyleSheet
} from 'react-native';
import {connect} from 'react-redux';
import Header from '../../common/Header';
import GlobalStyles from '../../common/GlobalStyles';
import TaskList... | JavaScript | 0 | @@ -294,24 +294,66 @@
balStyles';%0A
+import Loader from '../../common/Loader';%0A
import TaskL
@@ -388,16 +388,27 @@
%0Aimport
+Refreshable
PureList
@@ -428,21 +428,26 @@
/../
-lib/facebook/
+common/Refreshable
Pure
@@ -726,16 +726,46 @@
%3CTask%3E,%0A
+ onRefresh: () =%3E Promise,%0A
navi
@@ -1837,16 ... |
c3ef978bc2588985592654e8f9cad7527233ba28 | Update whole task at task update. | app/controllers/task.js | app/controllers/task.js | import Ember from "ember";
export default Ember.Controller.extend({
session: Ember.inject.service(),
storage: Ember.inject.service(),
reload_status: null,
mathObserver: function() {
MathJax.Hub.Queue(["Typeset", MathJax.Hub]);
}.observes("model.details.body"),
points_text... | JavaScript | 0 | @@ -870,24 +870,82 @@
actions: %7B%0D%0A
+ // Aktualizovat ulohu, detaily a vsechny moduly.%0D%0A
upda
@@ -958,32 +958,32 @@
: function() %7B%0D%0A
-
var
@@ -1050,24 +1050,26 @@
zuji...%22);%0D%0A
+%0D%0A
@@ -1079,25 +1079,85 @@
s.get(%22model
-.
+%22).reload().then(funct... |
4724a30df74118e1b3f783c229fe4dd2222c93e7 | Version bump | package.js | package.js | Package.describe({
name: 'babrahams:temple',
version: '0.0.2',
// Brief, one-line summary of the package.
summary: 'Developer tool that provides visual information about templates',
// URL to the Git repository containing the source code for this package.
git: 'https://github.com/JackAdams/temple.git',
//... | JavaScript | 0.000001 | @@ -56,17 +56,17 @@
n: '0.0.
-2
+3
',%0A //
|
98b625f1cbe378451fd5f42313d435ab48e45f27 | Maintain “shape” of AttrMorph | packages/morph-attr/lib/main.js | packages/morph-attr/lib/main.js | import { sanitizeAttributeValue } from "./morph-attr/sanitize-attribute-value";
import { isAttrRemovalValue, normalizeProperty } from "./dom-helper/prop";
import { svgNamespace } from "./dom-helper/build-html-dom";
import { getAttrNamespace } from "./htmlbars-util";
function getProperty() {
return this.domHelper.get... | JavaScript | 0 | @@ -1602,24 +1602,55 @@
ty = false;%0A
+ this.isSubtreeDirty = false;%0A
this.escap
@@ -1686,16 +1686,95 @@
UNSET;%0A
+ this.lastResult = null;%0A this.lastYielded = null;%0A this.childNodes = null;%0A
this.l
@@ -1852,16 +1852,41 @@
guid++;%0A
+ this.ownerNode = null;%0A
this.r
@@ -2243,40 +2243,8 @@
... |
e77d94a78b674ce6d4bce8d84bd24156e913d47a | Fix time | l2-frontend/src/store/modules/departments.js | l2-frontend/src/store/modules/departments.js | import departments_directory from '../../api/departments-directory'
import * as types from '../mutation-types'
import _ from 'lodash'
const state = {
all: [],
old_all: [],
can_edit: false,
types: []
}
const getters = {
allDepartments: state => state.all,
oldDepartments: state => state.old_all,
}
const ac... | JavaScript | 0.999405 | @@ -1035,10 +1035,10 @@
%7D,
-40
+65
0)%0A%7D
|
f9ee72c012a812c40f621dd8ab6c9af9a59a26b6 | Remove unused function | packages/idyll-document/src/utils/index.js | packages/idyll-document/src/utils/index.js | const values = require('object.values');
const entries = require('object.entries');
const getNodesByName = (name, tree) => {
const predicate = typeof name === 'string' ? (s) => s === name : name;
const byName = (acc, val) => {
if (typeof val === 'string') return acc;
const [ name, attrs, children ] = val... | JavaScript | 0.000004 | @@ -82,414 +82,8 @@
);%0A%0A
-const getNodesByName = (name, tree) =%3E %7B%0A const predicate = typeof name === 'string' ? (s) =%3E s === name : name;%0A%0A const byName = (acc, val) =%3E %7B%0A if (typeof val === 'string') return acc;%0A%0A const %5B name, attrs, children %5D = val;%0A%0A if (predicate(nam... |
ed0aafb48d13c34859fc7b0212af7c9bba6a08b1 | add key to MostAnnotatingUsers ListItem | src/front_page.js | src/front_page.js | import React from 'react'
import Route from 'react-route'
import { Card, CardTitle, CardText } from 'react-md/lib/Cards'
import { List, ListItem } from 'react-md/lib/Lists'
import { CircularProgress } from 'react-md/lib/Progress'
import FontIcon from 'react-md/lib/FontIcons'
import PaperAvatar from './paper_avatar'
i... | JavaScript | 0 | @@ -3966,16 +3966,32 @@
ListItem
+ key=%7Buser.name%7D
disable
|
b9c59bfff148c5fa8313c9b63bca2bafc0aa35ae | remove trailing space | package.js | package.js | /* eslint strict: 0, no-shadow: 0, no-unused-vars: 0, no-console: 0 */
'use strict';
const os = require('os');
const webpack = require('webpack');
const cfg = require('./webpack.config.production.js');
const packager = require('electron-packager');
const del = require('del');
const exec = require('child_process').exec... | JavaScript | 0.002332 | @@ -2405,18 +2405,16 @@
()%0A %7D;%0A
-
%0A const
|
e3afa9e0c484bb606634c08a26503ddd86e8586a | Set output directory. | src/MailTrace.Site/webpack.config.js | src/MailTrace.Site/webpack.config.js | "use strict";
require('regenerator-runtime/runtime');
/**
* To learn more about how to use Easy Webpack
* Take a look at the README here: https://github.com/easy-webpack/core
**/
const easyWebpack = require('@easy-webpack/core');
const generateConfig = easyWebpack.default;
const get = easyWebpack.get;
const path = ... | JavaScript | 0 | @@ -475,35 +475,17 @@
= '
-Aurelia Navigation Skeleton
+MailTrace
';%0Ac
@@ -605,12 +605,11 @@
ve('
-dist
+bin
');%0A
|
ecc7e3094fd20af5792c2a0a1fef596d9ac30f17 | Fix global anchor color | html-template.js | html-template.js | module.exports = function htmlTemplate({ title, repoName }) {
return `
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta
name="viewport"
content="width=device-width
initial-scale=1
user-scalable=no"
/>
<title>${ title }</title>
<link
href="https://fonts.googleapis.com/... | JavaScript | 0.000006 | @@ -266,16 +266,73 @@
/title%3E%0A
+ %3Cstyle%3E%0A a %7B%0A color: 'white';%0A %7D%0A %3C/style%3E%0A
%3Clink%0A
|
703be49b953fd02606309da7adbf30b78d4a6cc3 | fix indexof bug | packages/idyll-document/src/utils/index.js | packages/idyll-document/src/utils/index.js | const values = require('object.values');
const entries = require('object.entries');
const falafel = require('falafel');
export const evalExpression = (acc, expr, key, context) => {
let e;
if (key && (key.match(/^on[A-Z].*/) || key.match(/^handle[A-Z].*/))) {
let setState = setState;
e = `
(() => {
... | JavaScript | 0 | @@ -714,36 +714,49 @@
if
+(Object.keys
(acc
+)
.indexOf(node.na
@@ -1423,20 +1423,33 @@
if
+(Object.keys
(acc
+)
.indexOf
|
f4159a70c5b9d42fac535e50098133c72065b994 | make returns easier to read | dom/src/select.js | dom/src/select.js | import {makeEventsSelector} from './events'
import {isolateSource, isolateSink} from './isolate'
function makeIsStrictlyInRootScope(namespace) {
const classIsForeign = (c) => {
const matched = c.match(/cycle-scope-(\S+)/)
return matched && namespace.indexOf(`.${c}`) === -1
}
const classIsDomestic = (c) =... | JavaScript | 0.000002 | @@ -2231,18 +2231,16 @@
(%0A
-
slice.ca
@@ -2234,32 +2234,41 @@
slice.call(
+%0A
rootElement.quer
@@ -2300,26 +2300,24 @@
in(%60 %60))
-)
%0A
-
+)
.concat(
@@ -2327,16 +2327,25 @@
ce.call(
+%0A
rootElem
@@ -2384,21 +2384,26 @@
oin(%60%60))
+%0A
))%0A
-
).fi
|
90e7985e85939b15c39fa2b53b0e85b52e9c7150 | allow object.assign in tests | santa-test.js | santa-test.js | 'use strict';
// santa test package
module.exports = {
"extends": ["./santa.js"],
"rules": {
"santa/module-definition": 0,
"santa/no-module-state": 0,
"santa/enforce-package-access": 0,
"jasmine/no-spec-dupes": 0,
"jasmine/no-suite-dupes": 0,
"jasmine/missing-expe... | JavaScript | 0.000005 | @@ -88,17 +88,142 @@
%22
-rules%22: %7B
+plugins%22: %5B%0A %22jasmine%22%0A %5D,%0A %22env%22: %7B%0A %22jasmine%22: true%0A %7D,%0A %22rules%22: %7B%0A %22no-restricted-properties%22: 0,
%0A
@@ -1974,94 +1974,8 @@
: 0%0A
- %7D,%0A %22plugins%22: %5B%0A %22jasmine... |
d8ba7ab51f730b85107ebab3a057e4282d4cd3e6 | Check id in attributes before remove | src/code_manager/model/HtmlGenerator.js | src/code_manager/model/HtmlGenerator.js | import Backbone from 'backbone';
export default Backbone.Model.extend({
build(model, opts = {}) {
const models = model.components();
const htmlOpts = {};
const { em } = opts;
// Remove unnecessary IDs
if (opts.cleanId && em) {
const rules = em.get('CssComposer').getAll();
const idRul... | JavaScript | 0 | @@ -819,24 +819,104 @@
eave the ID%0A
+ !mod.get('attributes').id && // id is not intentionally in attributes%0A
id
|
6b2efd584c4bd39db0ca0c2bd64cf05e80af3177 | update controller addFolderByCsv | src/main/controllers/folder/addFolderByCsv.js | src/main/controllers/folder/addFolderByCsv.js | import {dialog} from 'electron';
import {isEmpty, first} from 'lodash';
import csv from 'fast-csv';
import fs from 'fs';
export default async function addFolderByCsv({models}) {
const {Folder} = models;
const options = {
properties: ['openFile'],
filters: [
{name: 'Csv Files', extensions: ['csv']}
... | JavaScript | 0 | @@ -118,66 +118,240 @@
s';%0A
-%0Aexport default async function addFolderByCsv(%7Bmodels%7D) %7B%0A
+import %7Bbasename%7D from 'path';%0A%0Aimport csvProcessor from './../../helpers/csvProcessor';%0A%0Aexport default async function addFolderByCsv(args) %7B%0A%0A const %7Bmodels, webContents%7D = args;%0A const send... |
eabab0aa778a880a1615f680dbc9d2b5799f8a41 | Fix deprecation warning and increase connection retries | domains/domain.js | domains/domain.js |
var logger = require("winston")
, _ = require('underscore')
, util = require('util')
, EventEmitter = require('events').EventEmitter
, Mongoose = require('mongoose').Mongoose
, Filestore = require('./filestore')
var Domain = module.exports = function(url) {
this.url = url;
this.mongoose =... | JavaScript | 0.000001 | @@ -604,41 +604,83 @@
l, %7B
-server: %7B auto_reconnect: false %7D
+%0A useMongoClient: true,%0A reconnectTries: 100%0A
%7D);%0A
|
90fa781bc8706afcddf2d41feab59901529831b8 | patch release - Bump to version 0.9.11 | package.js | package.js | Package.describe({
summary: "Accounts Templates styled for Twitter Bootstrap.",
version: "0.9.10",
name: "splendido:accounts-templates-bootstrap",
git: "https://github.com/splendido/accounts-templates-bootstrap.git",
});
Package.on_use(function(api, where) {
api.versionsFrom("METEOR@0.9.2.2");
... | JavaScript | 0 | @@ -92,25 +92,25 @@
sion: %220.9.1
-0
+1
%22,%0A name:
@@ -527,33 +527,33 @@
lates-core@0.9.1
-0
+1
%22,%0A %5D, %5B%22clie
@@ -1671,17 +1671,17 @@
re@0.9.1
-0
+1
%22,%0A %5D
|
82d648c0e7d5b6c2dd5d8c32b5537c2e66795542 | Fix page wrapping (#1195) | packages/layout/src/page/getContentArea.js | packages/layout/src/page/getContentArea.js | import getPadding from '../node/getPadding';
const getContentArea = page => {
const { paddingTop } = getPadding(page);
const height = page.style?.height;
return height - paddingTop;
};
export default getContentArea;
| JavaScript | 0 | @@ -89,19 +89,22 @@
padding
-Top
+Bottom
%7D = get
@@ -184,11 +184,14 @@
ding
-Top
+Bottom
;%0A%7D;
|
f7ac1aca8c485dc5a97ce32c38cf6a989f03dfa8 | Increment version number for the addition of latest client side js | package.js | package.js | Package.describe({
name: 'saucecode:rollbar',
version: '0.0.6',
summary: 'Rollbar error reporting integrations for Meteor',
documentation: 'README.md'
});
Package.onUse(function(api) {
api.versionsFrom('METEOR@1.0');
Npm.depends({
'rollbar': '0.5.4'
});
api.use('check', 'server');
api.addFil... | JavaScript | 0 | @@ -61,9 +61,9 @@
0.0.
-6
+7
',%0A
|
a7aaa2cc22f47dac5fe5b1dba3dc6c0040fe6ead | determine running status using papermill metadata | packages/notebook-preview/src/code-cell.js | packages/notebook-preview/src/code-cell.js | // @flow
import React from "react";
import { List as ImmutableList, Map as ImmutableMap } from "immutable";
import { Display } from "@nteract/display-area";
import Inputs from "./inputs";
import Editor from "./editor";
import LatexRenderer from "./latex";
type Props = {
cell: ImmutableMap<string, any>,
displayO... | JavaScript | 0.00003 | @@ -1740,24 +1740,152 @@
%3Cany%3E %7B%0A
+const running =%0A this.props.running %7C%7C%0A this.props.cell.getIn(%5B%22metadata%22, %22papermill%22, %22status%22%5D) === %22running%22;%0A
return (%0A
@@ -1907,33 +1907,8 @@
me=%7B
-this.props && this.props.
runn
@@ -2274,27 +2274,16 @@
unning=%... |
2b82fb65f5cd07cc2fa4ee4e6dcf8845c3820eec | Apply FacetEnabled of index fields for the search API | lib/api/2011-02-01/search.js | lib/api/2011-02-01/search.js | // -*- indent-tabs-mode: nil; js2-basic-offset: 2 -*-
var Domain = require('../../database').Domain;
var nroonga = require('../../wrapped-nroonga');
var BooleanQueryTranslator = require('../../bq-translator').BooleanQueryTranslator;
function formatFacets(data) {
var drilldownRecords = data.slice(1);
return drill... | JavaScript | 0 | @@ -5347,24 +5347,634 @@
arameter) %7B%0A
+ var facetReturnableFields = domain.facetReturnableIndexFields%0A .map(function(field) %7B%0A return field.name;%0A %7D);%0A facetParameter = facetParameter.sp... |
2eff81056045aa4179e9bdbd919f12570a5494c1 | fix adding multiple modules at once | Dnn9FastAddModule/template.js | Dnn9FastAddModule/template.js | /*globals jQuery, window, Sys */
(function ($, Sys) {
$(document).ready(function () {
if ($('.dnnModuleManager').length){
initAddModule(document);
Sys.WebForms.PageRequestManager.getInstance().add_endRequest(function (sender, args) {
var elemId = args.get_response().get_webRequest().get_... | JavaScript | 0 | @@ -2237,16 +2237,22 @@
$(this).
+off().
click(fu
|
5a37eb47ddb2247fdb11872a172823d18b47f160 | fix a11y upload report (#2790) | .circleci/upload-preview.js | .circleci/upload-preview.js | const fs = require('fs');
const path = require('path');
const { Octokit } = require('@octokit/rest');
const octokit = new Octokit({ auth: process.env.GH_PR_TOKEN });
const surge = require('surge');
const publishFn = surge().publish();
const owner = process.env.CIRCLE_PROJECT_USERNAME; // patternfly
const repo = proces... | JavaScript | 0 | @@ -909,32 +909,41 @@
uploadURL += '
+-coverage
.surge.sh';%0A
|
6583154f8421cdb245dc56bbf44e569ab81d6229 | Use proptypes package so we can get rid of a react warning. | packages/react-atlas/src/codegen.config.js | packages/react-atlas/src/codegen.config.js | let dot = require("dot");
let fs = require("fs");
let eol = require("os").EOL;
/* Below are the templates used by react-atlas to generate files for themeing.
* The templating library used by react-atlas is dot.js. More info about dot.js
* can be found here: http://olado.github.io/doT/index.html . Dot.js was c... | JavaScript | 0 | @@ -3083,19 +3083,54 @@
rt React
-, %7B
+ from 'react';%22 +%0D%0A eol + %0D%0A %22import
PropTyp
@@ -3131,30 +3131,33 @@
ropTypes
- %7D
from '
-react
+prop-types
';%22 +%0D%0A
|
cf06ae8c3828a5a9f0ac8ffd178053432e1a68ef | Add computationTime | circlefit.js | circlefit.js | /*
The MIT License (MIT)
Copyright (c) 2015 Michael MIGLIORE
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, mer... | JavaScript | 0.003219 | @@ -1751,16 +1751,58 @@
sidue: 0
+,%0A computationTime: performance.now()
%0A %7D;%0A
@@ -3384,24 +3384,98 @@
%0A %7D);%0A%0A
+ result.computationTime = performance.now() - result.computationTime;%0A%0A
return r
|
fc2207a38a31e8c239c8ce624e5a289c702fb8a9 | use visible option instead | lib/atom-ternjs-reference.js | lib/atom-ternjs-reference.js | 'use babel';
const ReferenceView = require('./atom-ternjs-reference-view');
import manager from './atom-ternjs-manager';
import emitter from './atom-ternjs-events';
import fs from 'fs';
import {uniq} from 'underscore-plus';
import path from 'path';
import {TextBuffer} from 'atom';
import {
disposeAll,
openFileAnd... | JavaScript | 0 | @@ -895,47 +895,36 @@
y: 0
+,
%0A
-%7D);%0A%0A this.referencePanel.hide(
+ visible: false%0A %7D
);%0A%0A
|
7b513b5f9a44d867a4377931f052601c69b04e4e | add check for split before executing | src/WebComponents/build/boot-lite.js | src/WebComponents/build/boot-lite.js | /**
* Copyright (c) 2014 The Polymer Project Authors. All rights reserved.
* This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
* The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
* The complete set of contributors may be found at http... | JavaScript | 0 | @@ -1308,16 +1308,35 @@
lags.log
+ && flags.log.split
) %7B%0A
|
1872893889f78909abcff39e50c6766999e2d348 | add comments | app/lib/assert.js | app/lib/assert.js |
import { assert } from 'chai';
// Add custom assertion methods
Object.assign(assert, {
state(expected, actual) {
assert(actual.is(expected), `unexpected state`);
},
isIntegerGt0(val) {
assert(typeof val === 'number' && val > 0 && val % 1 === 0, "must be integer greater than zero");
},
isNonEmptyString(... | JavaScript | 0 | @@ -90,90 +90,98 @@
%0A%09%0A%09
-state(expected, actual) %7B%0A%09%09assert(actual.is(expected), %60unexpected state%60);%0A%09%7D,%0A%09
+/**%0A%09 * Assert that something is an integer greater than zero.%0A%09 * @param %7BMixed%7D val%0A%09 */
%0A%09is
@@ -303,16 +303,98 @@
);%0A%09%7D,%0A%0A
+%09/**%0A%09 * Asse... |
cc33ea612f5b15ad24543ff820dc9c34c0482f36 | Revert "updated functional sort" | app/usedCarsStuff.js | app/usedCarsStuff.js | 'use strict';
//defining module
var usedCarsStuff = angular.module('usedCarsStuff',[]);
//defining controllers
usedCarsStuff.controller('UsedCarsController', function UsedCarsController($scope){
var carsList = $scope.cars = [
{
make: 'Toyota',
model: 'Corolla',
year: "2009",
mileage: "90123"
},
{
... | JavaScript | 0 | @@ -665,24 +665,72 @@
Mileage;%0A%09%0A%09
+var sortedCarsList = $scope.sortedCarsList = %5B%5D;
%0A%09%0A%09%0A%09$scope
@@ -790,37 +790,8 @@
%09%0A%09%0A
-%09$scope.sortedCarsList = %5B%5D;%0A
%09for
@@ -836,29 +836,8 @@
%0A%09%7B%0A
-%09%09console.log(x);%0A%09%09%0A
%09%09if
@@ -908,23 +908,16 @@
%0A%09%09%7... |
0ca611319080c5b60d897a9f29e992bcef323693 | Add todo for sort order constants | packages/table/src/SortOrder.js | packages/table/src/SortOrder.js | /**
* Sort order for the Table
*/
const SortOrder = {
/**
* Sort data in ascending order
*/
ASC: "asc",
/**
* Sort data in descending order
*/
DESC: "desc"
};
export default SortOrder;
| JavaScript | 0.000001 | @@ -25,16 +25,95 @@
e Table%0A
+ * @todo Rename to %60sortOrder%60. The object is neither a component nor a class.%0A
*/%0Acons
|
9cd02ce09cbe59d5140f06877f215cae721a3bce | Make the reduce a bit clearer | src/js/options.js | src/js/options.js | let Utils = require("./lib/utils.js");
function saveOptions() {
chrome.storage.local.set({
closeTab: document.querySelector("#close_tab").checked,
pinTab: document.querySelector("#pin_tab").checked,
autoRefresh: document.querySelector("#autorefresh_tab").checked,
newTab: document.querySelector("#newt... | JavaScript | 0.000113 | @@ -2414,16 +2414,20 @@
ur) =%3E %7B
+%0A
memo =
@@ -2437,16 +2437,20 @@
o %7C%7C %5B%5D;
+%0A
memo.pu
@@ -2461,16 +2461,20 @@
ur.url);
+%0A
return
@@ -2478,16 +2478,18 @@
rn memo;
+%0A
%7D, %5B%5D);
|
af314bd108f03fadd055c956fbddf1b00d258ae0 | add helper function for adding new Aura component | node_webkit/auraext/nestedview.js | node_webkit/auraext/nestedview.js |
/* backbone nested view extension
inspired from
http://blog.shinetech.com/2012/10/10/efficient-stateful-views-with-backbone-js-part-1/
*/
define(['jquery','underscore','backbone'],function($,_,Backbone){
var nestedView=Backbone.View.extend({
$yase: function(){ //promise interface
return this.sand... | JavaScript | 0 | @@ -131,17 +131,97 @@
part-1/%0A
+http://bardevblog.wordpress.com/2012/12/13/re-learning-backbone-js-nested-views/
%0A
-
*/%0Adefin
@@ -1126,24 +1126,536 @@
%09%7D%0A %7D,%0A
+ newAuraComponent:function(componentName,opts)%7B%0A if (!componentName) return;%0A var attributes='%22';%0A... |
56cd4571e501657292ca598df6ba156ddbd7c7d4 | add more js components to public plugin api (via #960) | allure-generator/src/main/javascript/pluginApi.js | allure-generator/src/main/javascript/pluginApi.js | import pluginsRegistry from './utils/pluginsRegistry';
import TreeLayout from './layouts/tree/TreeLayout';
import AppLayout from './layouts/application/AppLayout';
import WidgetStatusView from './components/widget-status/WidgetStatusView';
import {getSettingsForPlugin} from './utils/settingsFactory';
import settings fr... | JavaScript | 0 | @@ -233,16 +233,155 @@
sView';%0A
+import TrendChartView from './components/graph-trend-chart/TrendChartView';%0Aimport TrendCollection from './data/trend/TrendCollection.js';%0A
import %7B
@@ -766,16 +766,123 @@
atusView
+,%0A TrendChartView: TrendChartView%0A %7D,%0A collections: %7B%0A TrendCo... |
a7665559d3546895f71e07c5d5bddbb71a3ccee5 | Remove Rollup options that are unnecessary now that `@web/test-runner-mocha` is no longer bundled. | packages/tests/rollup.config.js | packages/tests/rollup.config.js | import commonjs from '@rollup/plugin-commonjs';
import {nodeResolve} from '@rollup/plugin-node-resolve';
export default [
{
input: 'chai.js',
output: {
file: 'chai-bundle.js',
format: 'es',
},
plugins: [
commonjs(),
nodeResolve({
preferBuiltins: false,
}),
],... | JavaScript | 0 | @@ -535,102 +535,8 @@
%5D,%0A
- makeAbsoluteExternalsRelative: false,%0A external: %5B'/__web-dev-server__web-socket.js'%5D,%0A
%7D,
|
f15519ce40bf66324ec2b04f2ee2ff5d1eb190a5 | Attach version to aws-sdk | package.js | package.js | Package.describe({
summary: "S3 signed uploads for meteorjs.",
version: "0.0.1",
git: "https://github.com/jimmiebtlr/s3-signed-upload.git"
});
Package.on_use(function(api){
api.use(['mrt:aws-sdk'], 'server');
api.use(['aldeed:simple-schema']);
api.export(['uploadFile'],'client');
api.export(['S3SignedUpl... | JavaScript | 0 | @@ -200,12 +200,16 @@
-sdk
-'%5D,
+@0.2.0',
'ser
@@ -240,17 +240,17 @@
d:simple
--
+.
schema'%5D
|
6c72e4e74fe9860ec670314cbb83169387161b33 | remove the heroImage condition (required) | models/Post.js | models/Post.js | const get = require('lodash').get
const config = require('../config')
const gcsConfig = get(config, [ 'options', 'gcs config' ], {})
var keystone = require('arch-keystone');
var transform = require('model-transform');
var moment = require('moment');
var Types = keystone.Field.Types;
var Post = new keystone.List('Post'... | JavaScript | 0.000001 | @@ -1862,32 +1862,16 @@
'Image'
-, required: true
%7D,%0A he
|
9300e5ea099ae9c2fe7d41b0c9ef809280ed7922 | Fix double invocation by merging signal/scale event streams. (#1672) | packages/vega-parser/src/parsers/update.js | packages/vega-parser/src/parsers/update.js | import parseExpression from './expression';
import parseStream from './stream';
import {Scope, View} from '../util';
import {selector} from 'vega-event-selector';
import {array, error, extend, isString, stringValue} from 'vega-util';
var preamble = 'var datum=event.item&&event.item.datum;';
export default function(sp... | JavaScript | 0 | @@ -448,25 +448,32 @@
-value = '', entry
+entry = %7Btarget: target%7D
;%0A%0A
@@ -767,16 +767,21 @@
nts)
+%0A
.filter(
func
@@ -780,41 +780,14 @@
ter(
-function(stream) %7B%0A if (stream
+s =%3E s
.sig
@@ -798,29 +798,18 @@
%7C%7C s
-tream
.scale
-) %7B%0A
+ ? (
sour
@@ -822,72 +822,130 @@... |
32de855b5a8533b710ed7ed666f22c979dca0c6b | update to latest space:event-sourcing version | package.js | package.js | Package.describe({
name: 'space:accounts',
version: '0.1.0',
summary: 'Accounts module for Space applications',
git: 'https://github.com/meteor-space/accounts.git',
documentation: 'README.md'
});
Package.onUse(function(api) {
api.versionsFrom('1.0');
api.use([
'coffeescript',
'mongo',
'acco... | JavaScript | 0 | @@ -374,11 +374,11 @@
g@1.
-2.3
+3.0
',%0A
|
f90b5b30e48d470591e871164b0fa218c0ee37ef | Update webpack, use terser plugin | webpack.config.babel.js | webpack.config.babel.js | import path from 'path'
import AssetsPlugin from 'assets-webpack-plugin'
import CopyPlugin from 'copy-webpack-plugin'
import MiniCssExtractPlugin from 'mini-css-extract-plugin'
import OptimizeCssAssetsPlugin from 'optimize-css-assets-webpack-plugin'
import UglifyJsPlugin from 'uglifyjs-webpack-plugin'
const APP_FILE_... | JavaScript | 0 | @@ -251,24 +251,22 @@
%0Aimport
-UglifyJs
+Terser
Plugin f
@@ -274,16 +274,14 @@
om '
-uglifyjs
+terser
-web
@@ -1650,29 +1650,112 @@
-indentedSyntax: false
+sassOptions: %7B%0A outputStyle: isDevelopment ? 'nested' : 'compressed',%0A %7D
,%0A
@@ -1921,73 +1921,22 @@
new
... |
a224a01ebb95b7500154696bcdd7b67e81a30d41 | Use pool.query in Spot model | models/Spot.js | models/Spot.js | const utils = require('../utils');
const attributes = ['id', 'open', 'challengedCount'];
module.exports = class Spot {
constructor(id, open, challengedCount) {
this._id = id;
this._open = open;
this._challengedCount = challengedCount;
}
static get attributes() {
return attributes;
}
stati... | JavaScript | 0 | @@ -1,19 +1,20 @@
const
-utils
+%7B db %7D
= requi
@@ -540,230 +540,77 @@
nst
-client = utils.db.createClient();%0A const queryString = 'UPDATE spots SET open = $1 WHERE id = $2';%0A%0A client.connect();%0A client.on('error', (err) =%3E reject(err));%0A%0A const query = client.query(queryStrin... |
5652b8d7c6749c3ab00703e6a2654b6ab53578da | Fix linting error. | assets/js/components/settings/SettingsActiveModule/Header.js | assets/js/components/settings/SettingsActiveModule/Header.js | /**
* Header component for SettingsActiveModule.
*
* Site Kit by Google, Copyright 2021 Google LLC
*
* 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
*
* https://www.apache.org/lice... | JavaScript | 0.000001 | @@ -2540,17 +2540,19 @@
allback(
-
+%0A%09%09
( event
@@ -2584,12 +2584,15 @@
n(),
- %5B%5D
+%0A%09%09%5B%5D%0A%09
);%0A%0A
|
fdf0f20282c27138f59c1d75a604f207ebe9f8a5 | fix role migration of super users | db/migrate/2017-12-18T02-04-08-create-role.js | db/migrate/2017-12-18T02-04-08-create-role.js | define(function(require, exports, module) {
module.exports = mig =>{
mig.createTable({
name: 'Role',
fields: {
org_id: {type: "id"},
user_id: {type: "id"},
role: {type: "text"}
},
indexes: [{columns: ['user_id', 'org_id'], unique: true}]
});
mig.reversible... | JavaScript | 0 | @@ -690,24 +690,51 @@
user._id,
+ user.role === 's' ? null :
user.org_id
|
384f408f53a4921672045ad7e9016b12068e43c0 | Fix eslint error | app/assets/javascripts/actions/tickets_actions.js | app/assets/javascripts/actions/tickets_actions.js | import {
CREATE_REPLY,
DELETE_TICKET,
FETCH_TICKETS,
FILTER_TICKETS,
MESSAGE_KIND_REPLY,
RECEIVE_TICKETS,
SELECT_TICKET,
SET_MESSAGES_TO_READ,
SORT_TICKETS,
TICKET_STATUS_OPEN,
UPDATE_TICKET
} from '../constants/tickets';
import { STATUSES } from '../components/tickets/util';
import { API_FAIL } f... | JavaScript | 0.000088 | @@ -423,37 +423,8 @@
ch';
-%0Aimport moment from 'moment';
%0A%0Aco
|
4b97d9a4a9bde9c34dce7098fc85c2a3bfe6b041 | Fix empty payload | server/api/accounts/create-token.js | server/api/accounts/create-token.js | 'use strict';
const Account = require('../../models/account');
const createError = require('http-errors');
const bcrypt = require('bcrypt-as-promised');
const jwt = require('jsonwebtoken-as-promised');
function createToken (req, res, next) {
Account.findOne({ email: req.body.email })
.then(ensureAccount)
.t... | JavaScript | 0.999484 | @@ -392,23 +392,20 @@
.catch(
-onError
+next
)%0A ;%0A%0A
@@ -636,16 +636,111 @@
ordHash)
+%0A .then(() =%3E account)%0A .catch(err =%3E %7B throw new createError.Forbidden(err); %7D)%0A
;%0A %7D%0A%0A
@@ -849,41 +849,8 @@
mail
-,%0A profile: account.profile,
%0A
@@ -1082,24 +1082,24 @@... |
324bb67fac3fc8e45586c20f2ff1a721319a973a | Add gameroom name to room | app/views/room.js | app/views/room.js | const h = require('virtual-dom/h');
module.exports = function (data) {
const {gameID, game} = data;
return h('div', {className: 'room'}, [
h('audio', {src: game.ended ? '/game-win.mp3' : '/8bit-love-machine.mp3', autoplay: true, loop: true}),
h('audio', {src: '/score-point.mp3', id: 'pointsound'}),
ga... | JavaScript | 0 | @@ -441,32 +441,92 @@
long?')%0A %5D),%0A
+ game.playing %7C%7C game.ended ? null : h('h2', game.name),%0A
game.playing
|
438da8ec88d426de01f87ef36c09f2782de429ee | fix 'path reservation error' | package.js | package.js | Package.describe({
"name": "ergasti:pages",
"summary": "State of the art, out of the box Meteor pagination",
"version": "1.8.6",
"git": "https://github.com/mnzaki/meteor-pages"
});
Package.onUse(function(api){
api.versionsFrom("METEOR@1.0.3.1")
api.use([
"meteor-platform",
"check",
... | JavaScript | 0.000002 | @@ -793,75 +793,8 @@
);%0A%0A
- api.addAssets(%5B%0A %22public/loader.gif%22%0A %5D, %22client%22);%0A%0A
|
fd1cf970b2b37e9bc3a600bb5bd43dc8856d4ba7 | Update RivCrimeReport.js | Examples/js/RivCrimeReport.js | Examples/js/RivCrimeReport.js | (function() {
// Create the connector object
var myConnector = tableau.makeConnector();
// Define the schema
myConnector.getSchema = function(schemaCallback) {
var cols = [{
id: "npc",
alias: "title",
dataType: tableau.dataTypeEnum.string
}]... | JavaScript | 0 | @@ -728,22 +728,8 @@
n/27
-/Crime_Reports
%22, f
|
aca2979a8dd7d890a46bdb4d03ec8b7d50b5b8ff | remove unique ioid | models/User.js | models/User.js | var mongoose = require('mongoose'),
bcrypt = require('bcrypt'),
SALT_WORK_FACTOR = 10,
UserSchema = mongoose.Schema({
name: {
type: String,
default: ''
},
ioid: {
type: String,
unique: true
},
status: {
type: String,
default: ''
},
surname: {
type: String,
default: ''
},
pas... | JavaScript | 0.000094 | @@ -190,25 +190,8 @@
ring
-,%0A%09%09%09unique: true
%0A%09%09%7D
|
b056b406023286df74370668036e30361bcef1db | Refactor review schema, establish relations | server/api/reviews/reviews.model.js | server/api/reviews/reviews.model.js | // reviews schema/model
const Sequelize = require('sequelize');
const dbConnection = require('../../config/db.config.js');
const POI = require('../poi/poi.model.js');
const User = require('../users/users.model.js');
const Review = dbConnection.define('review', {
review_type: {
type: Sequelize.STRING
},
revie... | JavaScript | 0 | @@ -346,22 +346,20 @@
quelize.
-STRING
+TEXT
,%0A de
|
3afa54954acde0a603b7a78573aeb39673fd4b22 | Exclude choo devtools in Node | lib/app/index.js | lib/app/index.js | const choo = require('choo')
const createStore = require('./store')
const { setLocale } = require('../locale')
if (typeof window !== 'undefined') {
require('smoothscroll-polyfill').polyfill()
}
const DEFAULT_LANGUAGE = 'sv'
/**
* Create the application instance
*/
const app = choo()
/**
* Take a list of route... | JavaScript | 0.000002 | @@ -1684,24 +1684,57 @@
development'
+ && typeof window !== 'undefined'
) %7B%0A app.us
|
54a62caa13b0a9b4ee48c575cb2333ecf26e8116 | Use Backbone's events in views. | apps/admin/client.js | apps/admin/client.js | //
// The client-side code for the commits page.
//
// [Browserify](https://github.com/substack/node-browserify) lets us write this
// code as a common.js module, which means requiring dependecies instead of
// relying on globals. This module exports the Backbone view and an init
// function that gets used in /assets/c... | JavaScript | 0 | @@ -688,40 +688,30 @@
%0A%0A
-initialize: function() %7B%0A $('
+events: %7B%0A 'submit
#art
@@ -731,43 +731,55 @@
orm'
-).on(
+:
'submit
-', this.submitForm);%0A
+Form'%0A %7D,%0A%0A initialize: function() %7B
%7D,%0A%0A
@@ -917,13 +917,37 @@
ork(
+this.transformFormData(
data)
+)
;%0A%0A
@@ -13... |
7b1eb12b424ef6286d546f59ecc41f6ce14a66b7 | Fix cache URLs | webpack.config.babel.js | webpack.config.babel.js | const { resolve } = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const ProgressBarPlugin = require('progress-bar-webpack-plugin');
const { getIfUtils, removeEmpty } = require('webpack-config-utils');
const webpack = require('webpack');
const nodeExternals = require('webpack-node-externals'... | JavaScript | 0.000267 | @@ -1874,9 +1874,97 @@
img/
-*
+coffee.svg', 'img/git.svg', 'img/latte.svg', 'img/mug.svg', 'img/smile.svg', 'favicon.ico
'%5D,%0A
|
badb86305a683f76bdeeae10c6076b8db8f4eac2 | include slugs in the github json | db/github.js | db/github.js | // mongo nodeknockout json2.js github.js | tail +5 | python -mjson.tool
var teams = db.Team.find().map(function(t) {
return {
name: t.name,
members: t.members.map(function(m) {
var p = db.Person.findOne({ _id: m._id }, {
github: true, email: true, name: true
});
delete p._id;
... | JavaScript | 0 | @@ -140,16 +140,34 @@
t.name,%0A
+ slug: t.slug,%0A
memb
|
20ba17b79e69e6f4d1b8d26ef9a684f5af73d733 | Simplify ReadOnlyArrayProxy implementation. | addon/system/read-only-array-proxy.js | addon/system/read-only-array-proxy.js | const { ArrayProxy } = Ember;
export default ArrayProxy.extend({
addObject() {
throw new Error('not supported');
},
clear() {
throw new Error('not supported');
},
insertAt() {
throw new Error('not supported');
},
popObject() {
throw new Error('not supported');
},
pushObject() {
... | JavaScript | 0 | @@ -28,450 +28,324 @@
r;%0A%0A
-export default ArrayProxy.extend(%7B%0A addObject() %7B%0A throw new Error('not supported');%0A %7D,%0A%0A clear() %7B%0A throw new Error('not supported');%0A %7D,%0A%0A insertAt() %7B%0A throw new Error('not supported');%0A %7D,%0A%0A popObject() %7B%0A throw new Err... |
e49caf8eab7dbfeffe628667ad8f7a9f5ea21488 | Make deps an explicit dependency | package.js | package.js | Package.describe({
summary: 'Display the connection status with the server'
})
Package.on_use(function(api, where) {
api.use([
'meteor',
'underscore',
'templating'
], 'client')
api.use(['tap-i18n'], ['client', 'server'])
api.add_files('package-tap.i18n', ['client', 'server'])
api.add_files([... | JavaScript | 0.007597 | @@ -139,16 +139,28 @@
eteor',%0A
+ 'deps',%0A
'und
|
9d6bcdf3c7caeb5b8b818598071eeaada729940e | Rename handlers | lib/attribute.js | lib/attribute.js |
// attribute - filter attributes
module.exports = function (key, attributes) {
var value = attributes
, handler = handlers[key]
return handler ? handler(key, attributes) : [key, value]
}
var handlers = {
'link':fromLink
, 'image':fromImage
}
function fromLink (key, attributes) {
var rel = attributes.re... | JavaScript | 0.000003 | @@ -218,21 +218,17 @@
'link':
-fromL
+l
ink%0A, 'i
@@ -233,21 +233,17 @@
'image':
-fromI
+i
mage%0A%7D%0A%0A
@@ -255,13 +255,9 @@
ion
-fromL
+l
ink
@@ -538,13 +538,9 @@
ion
-fromI
+i
mage
|
5c2cb1e2af274c9cd5899e43ef62921aa79206c2 | fix validation plugin | webpack.config.babel.js | webpack.config.babel.js | import path from 'path';
const config = {
devtool: 'source-map',
entry: [
'materialize-loader!./materialize.config.js',
'babel-polyfill',
'./src/client/index.js',
],
output: {
path: path.join(__dirname, 'public'),
publicPath: '/',
filename: 'bundle.js',
},
module: {
loaders: [{
... | JavaScript | 0.00001 | @@ -732,16 +732,167 @@
'file',%0A
+ %7D, %7B%0A test: require.resolve('jquery-validation'),%0A loader: 'imports-loader',%0A query: 'define=%3Efalse,require=%3Efunction()%7Breturn $%7D',%0A
%7D%5D,%0A
|
c8d6f19c51b12e1cfb0c96bf51c514e15c5f9fda | change publicPath | cfg/defaults.js | cfg/defaults.js | /**
* Function that returns default values.
* Used because Object.assign does a shallow instead of a deep copy.
* Using [].push will add to the base array, so a require will alter
* the base array output.
*/
'use strict';
const path = require('path');
const srcPath = path.join(__dirname, '/../src');
const dfltPor... | JavaScript | 0.000001 | @@ -1557,17 +1557,16 @@
cPath: '
-/
assets/'
|
5aba435576c869453c6eafac5a18c4ee4dcee36c | Update navigation | src/components/navigation/navigation.js | src/components/navigation/navigation.js | import $ from '../../utils/dom';
import Utils from '../../utils/utils';
const Navigation = {
update() {
// Update Navigation Buttons
const swiper = this;
const params = swiper.params.navigation;
if (swiper.params.loop) return;
const { $nextEl, $prevEl } = swiper.navigation;
if ($prevEl && $... | JavaScript | 0 | @@ -3574,24 +3574,192 @@
e();%0A %7D,%0A
+ toEdge() %7B%0A const swiper = this;%0A swiper.navigation.update();%0A %7D,%0A fromEdge() %7B%0A const swiper = this;%0A swiper.navigation.update();%0A %7D,%0A
destroy(
|
6ca87d25b9987eb81d04d893571001d4476ebbb8 | Update firefox-user.js | apps/firefox-user.js | apps/firefox-user.js | // Mozilla User Preferences
//dennyhalim.com
//http://kb.mozillazine.org/User.js_file
//http://kb.mozillazine.org/Locking_preferences
//https://support.mozilla.org/en-US/kb/customizing-firefox-using-autoconfig
//https://developer.mozilla.org/en-US/docs/Mozilla/Preferences/A_brief_guide_to_Mozilla_preferences
//https://... | JavaScript | 0.000003 | @@ -975,16 +975,68 @@
%22, 10);%0A
+user_pref(%22browser.sessionstore.interval%22, 600000);%0A
//user_p
|
2f994d36d43eb7aa018e1ef963d4f0167a7c42a2 | Use the writable fields list for the Edit component | src/Edit.js | src/Edit.js | import React, {Component} from 'react';
import {Edit as BaseEdit, SimpleForm, DisabledInput} from 'admin-on-rest';
import inputFactory from './inputFactory';
export default class Edit extends Component {
render() {
const factory = this.props.options.inputFactory ? this.props.options.inputFactory : inputFactory;
... | JavaScript | 0 | @@ -447,12 +447,12 @@
rce.
-read
+writ
able
|
d24e7cff71521fab50145dc535845a7b515cef26 | Add Type and Status constants to Project Model | models/project.js | models/project.js | var mongoose = require('mongoose');
var Schema = mongoose.Schema;
var ProjectSchema = new Schema(
{
name : String,
picture : {type : String, default : null},
type : {type : Number, default : 0},
description : {type : String, default : ''},
created : {type : Date, default : Date.now},
... | JavaScript | 0 | @@ -535,8 +535,299 @@
chema);%0A
+%0Amodule.exports.Type = %7B%7D;%0Amodule.exports.Type.Project = 0;%0Amodule.exports.Type.Event = 1;%0Amodule.exports.Type.Team = 2;%0A%0Amodule.exports.Status = %7B%7D;%0Amodule.exports.Status.Preparation = 0;%0Amodule.exports.Status.Vote = 1;%0Amodule.exports.Status.Working = 2;%0Am... |
7994a68385425cd4fbb5483c35f1d039ded2ba76 | fix git metadata | package.js | package.js | Package.describe({
name: 'osxi:annyang',
version: '2.0.0',
summary: 'Easy microphone speech recognition using JavaScript.',
git: 'git@github.com:osxi/meteor-annyang.git',
documentation: 'README.md'
});
Package.onUse(function(api) {
api.versionsFrom('1.2.1');
api.use('ecmascript');
api.addFiles('annyang... | JavaScript | 0.001167 | @@ -135,12 +135,16 @@
t: '
-git@
+https://
gith
@@ -149,17 +149,17 @@
thub.com
-:
+/
osxi/met
|
691453f9db59a11e8ebb923718affd1f5583d977 | Remove menu from Windows | electron/index.js | electron/index.js | /* global require, process */
(function () {
'use strict';
var electron = require('electron');
var path = require('path');
var url = require('url');
// Keep a global reference of the window object, if you don't, the window will
// be closed automatically when the JavaScript object is garbage collected.
var wi... | JavaScript | 0.000002 | @@ -1109,16 +1109,79 @@
%7D%0A%09%09%5D;%0A%0A
+%09%09// No menu on Windows%0A%09%09if (process.platform !== 'win32') %7B%0A%09
%09%09var Me
@@ -1200,16 +1200,17 @@
n.Menu;%0A
+%09
%09%09Menu.s
@@ -1261,16 +1261,20 @@
plate));
+%0A%09%09%7D
%0A%0A%09%09// C
|
48b5463ae1f1b8c02b2beda80ef0fd4597555771 | Remove redundand preLoader | webpack/webpack.base.js | webpack/webpack.base.js | var path = require('path');
var rootPath = '../';
module.exports = {
entry: {
app: [path.resolve(__dirname, '../src/main.js')]
},
output: {
path: path.resolve(__dirname, '../build'),
publicPath: '/',
filename: '[name].[hash].js',
sourceMapFilename: '[name].[hash].js.map',
chunkFilename:... | JavaScript | 0 | @@ -683,134 +683,8 @@
%7B%0A
- test: /%5C.vue$/,%0A loader: 'eslint',%0A include: rootPath,%0A exclude: /node_modules/%0A %7D,%0A %7B%0A
|
9a4625bb8254183b4e65cc028eccef5ff12e8ec0 | Convert NUMERIC field's output to float | src/mmw/js/src/modeling/gwlfe/entry/models.js | src/mmw/js/src/modeling/gwlfe/entry/models.js | "use strict";
var _ = require('lodash'),
Backbone = require('../../../../shim/backbone'),
GwlfeModificationModel = require('../../models').GwlfeModificationModel;
var ENTRY_FIELD_TYPES = {
NUMERIC: 'NUMERIC',
YESNO: 'YESNO',
};
var EntryFieldModel = Backbone.Model.extend({
defaults: {
lab... | JavaScript | 0.999993 | @@ -1675,32 +1675,188 @@
Value !== '') %7B%0A
+ if (field.get('type') === ENTRY_FIELD_TYPES.NUMERIC) %7B%0A userValue = parseFloat(userValue);%0A %7D%0A
|
06f05ef59eb7f04135a45b44a45c8a79c5155c64 | Fix case-bug not occuring on Windows. | src/remark/api.js | src/remark/api.js | var EventEmitter = require('events').EventEmitter
, highlighter = require('./highlighter')
, converter = require('./converter')
, Parser = require('./Parser')
, Slideshow = require('./models/slideshow')
, SlideshowView = require('./views/slideshowView')
, DefaultController = require('./controllers/defaultCo... | JavaScript | 0 | @@ -149,17 +149,17 @@
uire('./
-P
+p
arser')%0A
|
5d8daa86a9b1a34ba912b699475701fbc38f2338 | fix 2-3 pointers calculation error | fantasy_scores.js | fantasy_scores.js | //DOM change listener, taken from https://stackoverflow.com/questions/3219758/detect-changes-in-the-dom
var observeDOM = (function(){
var MutationObserver = window.MutationObserver || window.WebKitMutationObserver,
eventListenerSupported = window.addEventListener;
return function(obj, callback){
if( Mu... | JavaScript | 0.00004 | @@ -2925,105 +2925,68 @@
ters
-%0A stat = splitCol(3, %22-%22)%0A FO += (stat%5B0%5D - stat%5B1%5D)%0A //three-pointers
+ + three-pointers. No need to use of separate 3-point column
%0A
@@ -3008,17 +3008,17 @@
plitCol(
-4
+3
, %22-%22)%0A
|
59514e57f6ceea5bf8153a139d577ec19e08e0b6 | msg generator: default data is empty object | lib/core/GameMsgGenerator.js | lib/core/GameMsgGenerator.js | /**
* # GameMsgGenerator
*
* Copyright(c) 2015 Stefano Balietti
* MIT Licensed
*
* `nodeGame` component rensponsible creating messages
*
* Static factory of objects of type `GameMsg`.
*
* @see GameMsg
* @see node.target
* @see node.action
*/
(function(exports, parent) {
"use strict";
// ## Global... | JavaScript | 0.99835 | @@ -2712,20 +2712,18 @@
.data :
-null
+%7B%7D
,%0A
|
3769970f9539ade7f97b64d2c797cdd694b237aa | Add fontPicker module | app/assets/javascripts/miq_angular_application.js | app/assets/javascripts/miq_angular_application.js | ManageIQ.angular.app = angular.module('ManageIQ', [
'ui.select',
'ui.bootstrap',
'ui.codemirror',
'patternfly',
'patternfly.charts',
'frapontillo.bootstrap-switch',
'angular.validators',
'miq.api',
'miq.card',
'miq.compat',
'miq.util',
'kubernetesUI',
'miqStaticAssets.dialogEditor',
'miqStat... | JavaScript | 0 | @@ -269,16 +269,45 @@
tesUI',%0A
+ 'ManageIQ.fonticonPicker',%0A
'miqSt
|
1964c26403d5d5d089b1ef49b0962f5a1fc6199d | Update acquiredtasteCrafting.js | src/modules/crafting/acquiredtasteCrafting.js | src/modules/crafting/acquiredtasteCrafting.js | export const acquiredtaste = [
{
"item": "Sweet Dumpling Box",
"createdBy": "Acquired Taste",
"orders": [
{
"duration": "6h",
"cost": 150000,
"output": 6,
"ingredients": [
{"name": "Common Wheat",... | JavaScript | 0 | @@ -51,13 +51,12 @@
%22: %22
-Sweet
+Mild
Dum
@@ -53,35 +53,42 @@
%22Mild Dumpling
-Box
+Food Chest
%22,%0A %22crea
@@ -1992,19 +1992,26 @@
umpling
-Box
+Food Chest
%22,%0A
@@ -3922,11 +3922,18 @@
oup
-Box
+Food Chest
%22,%0A
@@ -5823,6 +5823,7 @@
%7D%0A%0A
-
%5D;
+%0A
|
e452330b726328f22c2f86fedcd9ce098957d2d9 | bump version | package.js | package.js | Package.describe({
name: 'mike:mocha',
summary: "Run mocha tests in the browser",
version: "0.4.4",
debugOnly: true,
git: "https://github.com/mad-eye/meteor-mocha-web"
});
Npm.depends({
mocha: "1.17.1",
chai: "1.9.0",
mkdirp: "0.5.0"
});
//TODO break this out into a separate package and depend weakly
... | JavaScript | 0 | @@ -95,17 +95,17 @@
n: %220.4.
-4
+5
%22,%0A deb
|
9233735dd547e19ac710cbc3280392144442252f | Fix comment | sked.js | sked.js | /**
* JS supplement to the Sked PHP calendar library.
*
* @see https://github.com/CampusUnion/Sked
*/
(function($) {
$(document).ready(function(){
// Pluralize intervals (days, weeks, etc.) based on frequency
$('.sked-form select[name="frequency"], .sked-form select[name="lead_time_num"]').cha... | JavaScript | 0 | @@ -1230,16 +1230,35 @@
based on
+ %22repeats%22 checkbox
%0A
|
2395b99ee8350faa4da126fa28fc1ea1683db5d5 | Rename timestamp to data and show data instead of this.raw (which doesn't do anything) | eg/accelerometer.js | eg/accelerometer.js | var five = require("../lib/johnny-five.js"),
board, accel;
board = new five.Board();
board.on("ready", function() {
// Create a new `Accelerometer` hardware instance.
//
// five.Accelerometer([ x, y[, z] ]);
//
// five.Accelerometer({
// pins: [ x, y[, z] ]
// freq: ms
// });
//
accel = ... | JavaScript | 0.000001 | @@ -767,17 +767,12 @@
rr,
-timestamp
+data
) %7B
@@ -808,16 +808,19 @@
e%22,
-this.raw
+data.smooth
);%0A
|
87da8d786274bd2aa9f7fb0ae42790002b3e3d3b | Update tpoll.js | chat-plugins/tpoll.js | chat-plugins/tpoll.js | exports.commands = {
tierpoll: 'tpoll',
tpoll: function (target, room, user) {
return this.parse('/poll new Tournament Tier?, Anything Goes, Challenge Cup 1v1, Monotype, OU, Random Battle, Random Monotype Battle, VGC, UU, RU, NU, PU, LC, Ubers, OMM, 8's, Gen One Random, Capture and Evolv... | JavaScript | 0 | @@ -279,10 +279,13 @@
MM,
-8'
+Eight
s, G
|
aa9e92f5f589856fad0af662cbeeab1c4bb200d8 | patch release - Bump to version 1.9.1 | package.js | package.js | Package.describe({
summary: 'Accounts Templates styled for Twitter Bootstrap.',
version: '1.9.0',
name: 'useraccounts:bootstrap',
git: 'https://github.com/meteor-useraccounts/bootstrap.git',
});
Package.on_use(function(api, where) {
api.versionsFrom('METEOR@1.0');
api.use([
'less',
'templating',
... | JavaScript | 0 | @@ -87,25 +87,25 @@
rsion: '1.9.
-0
+1
',%0A name: '
@@ -432,25 +432,25 @@
ts:core@1.9.
-0
+1
',%0A %5D, %5B'cl
@@ -1615,17 +1615,17 @@
ore@1.9.
-0
+1
',%0A %5D);
|
5e6eb735f836ccd38d32fe62b042be2be00bd8e1 | fix Beats playback not recognized and album artwork not displayed | src/controllers/BeatsMusicController.js | src/controllers/BeatsMusicController.js | controller = new BasicController({
supports: {
playpause: true,
next: true,
previous: true,
thumbsUp: true,
thumbsDown: true
},
playStateSelector: '#play_pause_icon',
playStateClass: '.icon-bicons_pause',
playPauseSelector: '#play_pause_icon',
nextSelector: '#t-next',
previousSelector:... | JavaScript | 0 | @@ -205,17 +205,16 @@
Class: '
-.
icon-bic
@@ -225,16 +225,16 @@
pause',%0A
+
playPa
@@ -563,16 +563,45 @@
ve%22,%0A%7D);
+%0A%0A// verify controller loaded
%0Aconsole
@@ -633,8 +633,457 @@
oller%22);
+%0A%0A// grab url from background-image and upgrade to medium size%0Acontroller.override('getAlbumArt', funct... |
d689a503e2f97fbeeaaac1bf4cc74e60747d6b9b | fix config.bundle | nimoy.js | nimoy.js | // NIMOY
// deps
var http = require('http')
var https = require('https')
var gzip = require('zlib').createGzip
var wsserver = require('ws').Server
var wsstream = require('websocket-stream')
var argv = require('optimist').argv
var through = require('through')
var fs = require('fs')
// handle config
var config = JSON.... | JavaScript | 0.000004 | @@ -1067,17 +1067,16 @@
omains?%0A
-%0A
var se
@@ -1238,21 +1238,47 @@
bundle)
-%7B%0A
+var bundleFile = config.bundle;
config.
@@ -1301,20 +1301,51 @@
FileSync
-%0A %7D
+(config.dirStatic + config.bundle);
%0A%0A if (
|
78a393e190cabe92d597bcd795d0720b38e05bc4 | Update constant varriables to using const | app/controllers/twitter_auth0_sign_in_callback.js | app/controllers/twitter_auth0_sign_in_callback.js | const config = require('config')
const request = require('request')
const logger = require('../../lib/logger.js')()
const { Authentication } = require('../../lib/auth0')
var AccessTokenHandler = function (req, res) {
return function (err, response, body) {
if (err) {
console.error('Error obtaining access t... | JavaScript | 0 | @@ -164,19 +164,21 @@
uth0')%0A%0A
-var
+const
AccessT
@@ -565,18 +565,20 @@
%7D%0A%0A
-le
+cons
t auth0
@@ -908,11 +908,13 @@
-var
+const
api
@@ -1155,18 +1155,20 @@
I%0A
-le
+cons
t endpoi
@@ -1526,34 +1526,8 @@
%7D%0A
- console.log(body)%0A
@@ -1878,18 +1878,20 @@
%0A %7D... |
a2cd1a78553449c0e3e6cc1bfa0cadd23e6963e3 | Add silent option to config.option / config.options | public/src/js/config.js | public/src/js/config.js | /*
* debugger.io: An interactive web scripting sandbox
*
* config.js: simple configuration manager
*/
define(['promise!config_p'], function(config) {
delete window._debugger_io;
if (!config.prod) { window.config = config; }
return config;
});
define('config_p', ['jquery', 'underscore'],
function($, _) {
'... | JavaScript | 0.000005 | @@ -979,16 +979,91 @@
l value%0A
+ * @param %7BBoolean%7D %5Bsilent%5D - if true, do not proxy update to event bus%0A
*/%0A
@@ -1100,16 +1100,24 @@
n, value
+, silent
) %7B%0A
@@ -1543,16 +1543,27 @@
//
+ optionally
proxy c
@@ -1589,16 +1589,41 @@
ent bus%0A
+ if (!silent) %7B%0A
... |
9953f4623e3dc50ab14ea48d148a484b0eb35366 | Set loading state false just before leave page - in Safari the back/forward cache will restore the login page state including javascript state, leaving the loading state true and the spinner spinning. | src/plugin/modules/components/signinButton.js | src/plugin/modules/components/signinButton.js | define([
'knockout-plus',
'kb_common/html',
'kb_common_ts/Auth2Error'
], function (
ko,
html,
Auth2Error
) {
'use strict';
var t = html.tag,
div = t('div'),
span = t('span'),
img = t('img');
function viewModel(params) {
// import params into this VM.... | JavaScript | 0 | @@ -2392,15 +2392,12 @@
.
-finally
+then
(fun
@@ -2495,23 +2495,16 @@
-return
runtime.
@@ -3117,32 +3117,126 @@
%7D);%0A
+ %7D)%0A .finally(function () %7B%0A loading(false);%0A
|
3a1b139d15de588c064d0baf6d572b8e979ec811 | update setNativeProps() | elements/Polygon.js | elements/Polygon.js | import React, { Component } from "react";
import PropTypes from "prop-types";
import Path from "./Path";
import { pathProps } from "../lib/props";
import extractPolyPoints from "../lib/extract/extractPolyPoints";
export default class extends Component {
static displayName = "Polygon";
static propTypes = {
... | JavaScript | 0 | @@ -583,36 +583,250 @@
-this.root.getNativeElement()
+var points = %5B...args%5D%5B0%5D.points;%0A if (points) %7B%0A if (Array.isArray(points)) %7B%0A points = points.join(%22,%22);%0A %7D%0A %5B...args%5D%5B0%5D.d = %60M$%7BextractPolyPoints(points)%7D%60%0... |
75e4a43f5992b73c94af60f75a1a75f734533f9c | replace const with let | modules/Record.js | modules/Record.js | const guard = Symbol('EmptyRecord');
const values = Symbol('CustomValues');
const defaults = Symbol('DefaultValues');
const empty = () => void 0;
export default class Record {
constructor(custom = {}) {
if (custom === guard) return this;
if (!this.constructor.hasOwnProperty(defaults)) {
const emptyRec... | JavaScript | 0.001193 | @@ -1,12 +1,10 @@
-cons
+le
t guard
@@ -28,20 +28,18 @@
cord');%0A
-cons
+le
t values
@@ -65,20 +65,18 @@
lues');%0A
-cons
+le
t defaul
@@ -105,20 +105,18 @@
lues');%0A
-cons
+le
t empty
@@ -291,20 +291,18 @@
%7B%0A
-cons
+le
t emptyR
@@ -476,20 +476,18 @@
%7D%0A%0A
-cons
+le
t base =
@@ -517,36... |
1a04f497191e02e6561c778ea07322b23a38a525 | patch release - Bump to version 1.14.2 | package.js | package.js | Package.describe({
summary: 'Accounts Templates MDL.',
version: '1.14.1',
name: 'useraccounts:mdl',
git: 'https://github.com/meteor-useraccounts/mdl.git',
});
Package.on_use(function(api, where) {
api.versionsFrom('METEOR@1.0');
api.use([
'templating',
'underscore',
], 'client');
api.use([
... | JavaScript | 0 | @@ -63,25 +63,25 @@
sion: '1.14.
-1
+2
',%0A name: '
@@ -482,33 +482,33 @@
ow-routing@1.14.
-1
+2
', %5B'client', 's
@@ -573,17 +573,17 @@
ng@1.14.
-1
+2
', %5B'cli
@@ -657,17 +657,17 @@
re@1.14.
-1
+2
',%0A %5D,
@@ -1876,17 +1876,17 @@
re@1.14.
-1
+2
'%0A %5D);%0A
|
593e604efe9f8a6fa3e98ca44aed348afb44f952 | bump minor instead | package.js | package.js | Package.describe({
name: "aldeed:simple-schema",
summary: "A simple schema validation object with reactivity. Used by collection2 and autoform.",
version: "1.0.4",
git: "https://github.com/aldeed/meteor-simple-schema.git"
});
Npm.depends({
"string": "1.6.0"
});
Package.on_use(function(api) {
if (api.vers... | JavaScript | 0 | @@ -161,11 +161,11 @@
%221.
-0.4
+1.0
%22,%0A
|
10ba49329c25a92e3738d08bebae59e7bd06dd0e | remove log | server/api.js | server/api.js | 'use strict';
const express = require('express');
const app = express.Router();
const messagesApi = require('./messages.js');
const pushApi = require('./push.js');
const bp = require('body-parser');
function errorResponse(res, e, status) {
res.status(status || 500);
res.json({
error: e.message
});
}
app... | JavaScript | 0.000001 | @@ -1200,26 +1200,8 @@
%3E %7B%0A
-%09%09console.log(e);%0A
%09%09er
|
ba4db6f9a3784557b20d995d7d4198a03d13233b | Move capture method cb into page.render cb | lib/capturejs.js | lib/capturejs.js | /*jslint browser: true, node: true, sloppy: true, maxerr: 50, indent: 4 */
// vim: set fenc=utf-8 ts=4 sts=4 sw=4 :
'use strict';
var phantom = require('phantom');
module.exports.capture = function (option, callback) {
callback = callback || function () {};
var args = [],
phantomHandler;
// Hand... | JavaScript | 0.000006 | @@ -2973,19 +2973,36 @@
n.output
-);%0A
+, function () %7B%0A
@@ -3036,32 +3036,36 @@
+
process.nextTick
@@ -3076,16 +3076,40 @@
lback);%0A
+ %7D);%0A
|
afc2c915bac8d6d49f0294a5850a079a209f822e | Add TODO item. | lib/challenge.js | lib/challenge.js | var merge = require('utils-merge');
var DuoAuthAPIError = require('../lib/errors/duoauthapierror');
exports = module.exports = function(client) {
return function challenge(authenticator, options, cb) {
if (typeof options == 'function') {
cb = options;
options = undefined;
}
options = opti... | JavaScript | 0 | @@ -1303,24 +1303,60 @@
break;%0A
+ %0A // TODO: default error%0A
%7D%0A %0A
|
d1684120d2cd69cf685539ee6ec5e9a370e2fe46 | bump to 0.1.1 | package.js | package.js | Package.describe({
name: "ground:util",
version: "0.1.0",
summary: "Adds utillity functions for ground db to use",
git: "https://github.com/GroundMeteor/util.git"
});
Package.on_use(function (api) {
api.export('_groundUtil');
api.export('Ground');
api.versionsFrom('1.0');
api.use('meteor-platform... | JavaScript | 0.000075 | @@ -51,17 +51,17 @@
n: %220.1.
-0
+1
%22,%0A sum
@@ -428,16 +428,36 @@
ejson',%0A
+ 'reactive-var',%0A
'gro
|
6faeb37c28730293d10c4e6ca6622a7d085d52f1 | fix bug in router. In page hash links were incorrectly routed. | router/router.js | router/router.js | define([
'dojo/_base/lang',
'dojo/on',
'dojo/when',
'dojo/string',
'dojo/i18n!../nls/router',
'./exception/RouteNotFound',
'dojo/domReady!'
],
function (
lang,
on,
when,
string,
messages,
RouteNotFound
){
return {
// if the base url is undefined, it will ... | JavaScript | 0 | @@ -2087,32 +2087,203 @@
%0A %7D%0A%0A
+ // check for in page hash navigation - these are not routed%0A if (route.indexOf('#') == 0) %7B%0A return (%7Bignore: true%7D);%0A %7D%0A%0A
//st
|
7c78492b4b10848e95cbd1d97007f19af352e6b9 | upgrade to latest space:messaging release | package.js | package.js | Package.describe({
summary: 'CQRS and Event Sourcing Infrastructure for Meteor.',
name: 'space:cqrs',
version: '3.0.0',
git: 'https://github.com/CodeAdventure/space-cqrs.git',
});
Package.onUse(function(api) {
api.versionsFrom("METEOR@1.0");
api.use([
'coffeescript',
'ejson',
'space:base@1.3.... | JavaScript | 0 | @@ -340,17 +340,17 @@
aging@0.
-2
+3
.0'%0A %5D)
|
ebb61ecf26bab91f5d75a9a941235ca162035b5e | Consolidate dependencies. | server/app.js | server/app.js | // mochad client
var net = require('net');
var client;
function setupConnection() {
client = net.connect({port: 1099}, function() {
console.log('Connection successful');
});
client.on('error', function(e) {
console.log('Connection error: ' + e.code);
console.log('Retrying in 1 seco... | JavaScript | 0 | @@ -1,20 +1,19 @@
//
-mochad client
+Dependencies
%0Avar
@@ -33,17 +33,69 @@
e('net')
-;
+,%0A express = require('express');%0A%0A// mochad client
%0Avar cli
@@ -465,42 +465,8 @@
ver%0A
-var express = require('express');%0A
var
|
4b77fc1a0320029df0f884893bd86181e41f1cfb | Add shortcut functions to common template functionality | server/app.js | server/app.js | var _ = require('underscore'),
express = require('express'),
path = require('path'),
multer = require('multer'),
settings = require('./settings'),
app = require('libby')(express, settings);
var User = require('./models/index').User;
app.passport = require('./li... | JavaScript | 0 | @@ -152,41 +152,119 @@
-settings = require('./settings
+moment = require('moment'),%0A settings = require('./settings'),%0A util = require('./lib/util
'),%0A
@@ -701,24 +701,24 @@
tialize());%0A
-
app.use(
@@ -739,24 +739,576 @@
ession());%0A%0A
+ // utils%0A app.use(function... |
e74c96968f54ef9e85c3e2e2673cd32934564a92 | Upgrade collection-extensions version dependency | package.js | package.js | Package.describe({
name: 'dburles:mongo-collection-instances',
summary: "Access your Mongo instances",
version: "0.3.3",
git: "https://github.com/dburles/mongo-collection-instances.git"
});
Package.onUse(function(api) {
api.versionsFrom('1.0');
api.use([
'mongo',
'underscore',
'lai:collection-e... | JavaScript | 0 | @@ -327,17 +327,17 @@
ons@0.1.
-3
+4
'%5D);%0A a
|
420e138d452ec78f6eaada9a6eb72a56282a5179 | Update posts.js | scripts/posts.js | scripts/posts.js | // posts
module.posts = {
post1 : {
user_id : 'user1',
prompt_id : 'prompt1',
private : false,
type : 'response',
value : 'Prayer Goals: 1.) I would like God to transform my relationship with my parents. 2.) I would like God to enter in to some of my friendships and help me know how to better lo... | JavaScript | 0.000001 | @@ -1642,914 +1642,1056 @@
: '
-Lorem ipsum dolor sit amet, consectetur adipisicing elit. Ipsa dolore explicabo quis, maxime vitae. Obcaecati, assumenda nam fugiat, adipisci quo odio, animi nisi aspernatur nulla excepturi vero at cumque voluptates?'%0A %7D,%0A%0A post5 : %7B%0A user_id : 'user2',%0A prompt_id... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.