This file is indexed.

/usr/share/doc/node-tsame/README.md is in node-tap 11.0.0+ds1-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# tsame

Verify that two objects are the same, for use in
[tap](http://www.node-tap.org/).  The less accepting cousin of
[tmatch](http://npm.im/tmatch).

This merges code originally found in
[only-shallow](http://npm.im/only-shallow) and
[deeper](http://npm.im/deeper).  See license file for more details.

## USAGE

```javascript
const tsame = require('tsame')

const obj1 = { foo: '1' }
const obj2 = { foo: 1 }

// nonstrict by default
assert(tsame(obj1, obj2))

// strictly the same, types and all
assert(!tsame.strict(obj1, obj2))
```

Pretty much what it says on the tin.