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

marksman

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

marksman

gun.js replacement function for .path().

latest
Source
npmnpm
Version
0.1.0
Version published
Maintainers
1
Created
Source

Marksman

Replacement function for gun's internal .path() function, except replacing the core delimiter from a period to a forward-slash.

Using in applications

npm i --save marksman gun
var Gun = require('gun');
Gun.chain.path = require('marksman');
var gun = new Gun();

var x = { object: true };
// the following lines are equivalent:

gun.get('first').get('second').get('third').put(x);

gun.path(['first', 'second', 'third']).put(x);

gun.path('first/second/third').put(x);

License

This is a fork of gun.js with everything else stripped

Designed with ♥ by Mark Nadal, the GUN team, and many amazing contributors.

Openly licensed under Zlib / MIT / Apache 2.0.

Keywords

gun

FAQs

Package last updated on 30 Jan 2018

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