StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics https://doi.org/10.1109/TVCG.2020.3030352
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
StackGenVis/frontend/node_modules/quote-stream/node_modules/object-keys
Angelos Chatzimparmpas e069030893 fix the frontend 4 years ago
..
test fix the frontend 4 years ago
.npmignore fix the frontend 4 years ago
.travis.yml fix the frontend 4 years ago
README.md fix the frontend 4 years ago
foreach.js fix the frontend 4 years ago
index.js fix the frontend 4 years ago
isArguments.js fix the frontend 4 years ago
package.json fix the frontend 4 years ago
shim.js fix the frontend 4 years ago

README.md

#object-keys Version Badge

Build Status dependency status

browser support

An Object.keys shim. Uses Object.keys if available.

Example

var keys = require('object-keys');
var assert = require('assert');
var obj = {
	a: true,
	b: true,
	c: true
};

assert.equal(keys(obj), ['a', 'b', 'c']);

Source

Implementation taken directly from es5-shim, with modifications, including from lodash.

Tests

Simply clone the repo, npm install, and run npm test