Skip to content

Instantly share code, notes, and snippets.

@vanics
Forked from katowulf/firebase_copy.js
Created November 20, 2016 07:15
Show Gist options
  • Save vanics/70d7e2afb3c15ddd65b19364c64e6b22 to your computer and use it in GitHub Desktop.
Save vanics/70d7e2afb3c15ddd65b19364c64e6b22 to your computer and use it in GitHub Desktop.
Move or copy a Firebase path to a new location
function copyFbRecord(oldRef, newRef) {
oldRef.once('value', function(snap) {
newRef.set( snap.value(), function(error) {
if( error && typeof(console) !== 'undefined' && console.error ) { console.error(error); }
});
});
}
function moveFbRecord(oldRef, newRef) {
oldRef.once('value', function(snap) {
newRef.set( snap.value(), function(error) {
if( !error ) { oldRef.remove(); }
else if( typeof(console) !== 'undefined' && console.error ) { console.error(error); }
});
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment