New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

cpuprofilify

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cpuprofilify - npm Package Compare versions

Comparing version 0.2.0 to 0.2.1

traceview.json

7

index.js

@@ -117,3 +117,8 @@ 'use strict';

proto._filterInternals = function _filterInternals() {
this._filtered = filterInternals(this._trace, this._opts);
if (this._converterCtr.proto.type === 'instruments') {
this.emit('warn', 'Filtering internals is not supported for Instrument callgraphs at this point');
this._filtered = this._trace;
} else {
this._filtered = filterInternals(this._trace, this._opts);
}
this._filteredLen = this._filtered.length;

@@ -120,0 +125,0 @@

2

package.json
{
"name": "cpuprofilify",
"version": "0.2.0",
"version": "0.2.1",
"description": "Converts output of various profiling/sampling tools to the .cpuprofile format so it can be loaded into Chrome DevTools.",

@@ -5,0 +5,0 @@ "main": "index.js",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc