4a8d8246c9995c769e02283af320b7a1fa02d3da
[yaffs-website] / node_modules / uncss / node_modules / qs / test / utils.js
1 'use strict';
2
3 var test = require('tape');
4 var utils = require('../lib/utils');
5
6 test('merge()', function (t) {
7     t.deepEqual(utils.merge({ a: 'b' }, { a: 'c' }), { a: ['b', 'c'] }, 'merges two objects with the same key');
8     t.end();
9 });