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.
25 lines
361 B
25 lines
361 B
/*
|
|
* put-object.js: Example usage for `cliff.putObject`.
|
|
*
|
|
* (C) 2010, Charlie Robbins & the Contributors
|
|
*
|
|
*/
|
|
|
|
var cliff = require('../lib/cliff');
|
|
|
|
console.log(cliff.inspect({
|
|
literal: "bazz",
|
|
arr: [
|
|
"one",
|
|
2,
|
|
],
|
|
obj: {
|
|
host: "localhost",
|
|
port: 5984,
|
|
auth: {
|
|
username: "admin",
|
|
password: "password"
|
|
}
|
|
}
|
|
}));
|