2021-06-22 19:25:00 +00:00
|
|
|
export const data = {
|
2012-09-09 01:09:03 +00:00
|
|
|
isNull: null,
|
2014-11-26 06:31:48 +00:00
|
|
|
literal: 'bazz',
|
2011-04-02 08:31:20 +00:00
|
|
|
arr: ['one', 2, true, { value: 'foo' }],
|
|
|
|
obj: {
|
|
|
|
host: 'localhost',
|
|
|
|
port: 5984,
|
|
|
|
array: ['one', 2, true, { foo: 'bar' }],
|
|
|
|
auth: {
|
|
|
|
username: 'admin',
|
|
|
|
password: 'password'
|
|
|
|
}
|
|
|
|
}
|
2011-06-05 05:29:14 +00:00
|
|
|
};
|
|
|
|
|
2021-06-22 19:25:00 +00:00
|
|
|
export const merge = {
|
2011-06-05 05:29:14 +00:00
|
|
|
prop1: 1,
|
|
|
|
prop2: [1, 2, 3],
|
|
|
|
prop3: {
|
|
|
|
foo: 'bar',
|
|
|
|
bar: 'foo'
|
|
|
|
}
|
|
|
|
};
|