Show More
Commit Description:
add golden submit button...
Commit Description:
add golden submit button - When the user submit more than or equal to 100 times the submit button will turn gold - Add golden-btn tag in applications.css.scss
File last commit:
Show/Diff file:
Action:
node_modules/es6-set/test/lib/iterator.js | 13 lines | 395 B | application/javascript | JavascriptLexer |
move datatable to yarn
r789 'use strict';
var Set = require('../../polyfill')
, toArray = require('es5-ext/array/to-array');
module.exports = function (T, a) {
var set = new Set(['raz', 'dwa']);
a.deep(toArray(new T(set)), ['raz', 'dwa'], "Default");
a.deep(toArray(new T(set, 'key+value')), [['raz', 'raz'], ['dwa', 'dwa']],
"Key & Value");
a.deep(toArray(new T(set, 'value')), ['raz', 'dwa'], "Other");
};