react/scripts/perf-counters
Sophie Alpert b765fb25eb Change license and remove references to PATENTS
Only remaining references:

```
docs/_posts/2014-10-28-react-v0.12.md
51:You can read the full text of the [LICENSE](https://github.com/facebook/react/blob/master/LICENSE) and [`PATENTS`](https://github.com/facebook/react/blob/master/PATENTS) files on GitHub.

docs/_posts/2015-04-17-react-native-v0.4.md
20:* **Patent Grant**: Many of you had concerns and questions around the PATENTS file. We pushed [a new version of the grant](https://code.facebook.com/posts/1639473982937255/updating-our-open-source-patent-grant/).

src/__mocks__/vendor/third_party/WebComponents.js
8: * subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
```
2017-09-25 18:17:44 -07:00
..
src Update license headers BSD+Patents -> MIT 2017-09-25 18:17:44 -07:00
Makefile Add rudimentary jsc perf-counters runner 2015-09-30 23:36:06 -07:00
README.md Add node bindings 2015-09-19 11:30:28 -07:00
binding.gyp Add node bindings 2015-09-19 11:30:28 -07:00
index.js Add node bindings 2015-09-19 11:30:28 -07:00
package.json Change license and remove references to PATENTS 2017-09-25 18:17:44 -07:00

README.md

perf-counters

Lightweight bindings to Linux perf event counters.

$ node
> var PerfCounters = require('perf-counters');
> PerfCounters.init();
> var start = PerfCounters.getCounters(); console.log('test'); var end = PerfCounters.getCounters();
test
> start
{ instructions: 1382, loads: 421, stores: 309 }
> end
{ instructions: 647633, loads: 195771, stores: 133246 }
>