New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

trace-t

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

trace-t

functions for tracing and monitoring execution

latest
Source
npmnpm
Version
0.1.0
Version published
Maintainers
1
Created
Source

trace-t

Build Status Test Coverage NPM Version

functions for tracing and monitoring execution

installation

yarn add trace-t

or

npm install trace-t --save

usage

import trace from 'trace-t'

const x = 42

const r = trace('x is')(x)

// r === x

outputs

x is 42

api

trace

trace: (...ms: Array<{}>) => <A>(x: A) => A

traceStack

traceStack: (...ms: Array<{}>) => <A>(x: A) => A

traceUsing

traceUsing: (log: Log) => (...ms: Array<{}>) => <A>(x: A) => A

where

type Log = (...xs: Array<{}>) => void

references

the base package / Debug.Trace

license

MIT

Keywords

debug

FAQs

Package last updated on 14 May 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts