mirror of https://github.com/lukechilds/node.git
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.
32 lines
630 B
32 lines
630 B
'use strict';
|
|
|
|
/*eslint-disable no-console*/
|
|
|
|
var yaml = require('../lib/js-yaml');
|
|
var object = require('./dumper.json');
|
|
|
|
|
|
console.log(yaml.dump(object, {
|
|
flowLevel: 3,
|
|
styles: {
|
|
'!!int' : 'hexadecimal',
|
|
'!!null' : 'camelcase'
|
|
}
|
|
}));
|
|
|
|
|
|
// Output:
|
|
//==============================================================================
|
|
// name: Wizzard
|
|
// level: 0x11
|
|
// sanity: Null
|
|
// inventory:
|
|
// - name: Hat
|
|
// features: [magic, pointed]
|
|
// traits: {}
|
|
// - name: Staff
|
|
// features: []
|
|
// traits: {damage: 0xA}
|
|
// - name: Cloak
|
|
// features: [old]
|
|
// traits: {defence: 0x0, comfort: 0x3}
|
|
|