Skip to content

Instantly share code, notes, and snippets.

View wyattdanger's full-sized avatar

Stephen Bush wyattdanger

View GitHub Profile
@thisismedium
thisismedium / load-YAML.js
Created September 30, 2010 18:22
Evaluate a YAML document in Node.JS using Python.
// Evaluate a YAML document.
//
// + text - String YAML document
// + next - Function callback
//
// For example:
//
// loadYAML("this: is\nyaml:", function(err, obj) {
// if (err) throw err;
// console.dir(obj);