Skip to content

Instantly share code, notes, and snippets.

@techfort
Created February 16, 2015 22:14
Show Gist options
  • Save techfort/519dc03e2bf10251e2df to your computer and use it in GitHub Desktop.
Save techfort/519dc03e2bf10251e2df to your computer and use it in GitHub Desktop.
var Collection = require('lokijs').Collection;
var obj = JSON.parse('serializedCollection.js'),
coll = new Collection('myColl');
Object.keys(obj).forEach(function (prop) {
coll[prop] = obj[prop];
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment