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

neuropause-sdk

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

neuropause-sdk

NeuroPause SDK — UBS-2027 coherence, COG–COP stability & energetic analytics

latest
Source
npmnpm
Version
1.0.0
Version published
Maintainers
1
Created
Source

NeuroPause SDK v1.0.0 (JavaScript)

A scientific coherence & stability analytics SDK based on the UBS-2027 framework.

Install

npm install neuropause-sdk

Usage

const { computeCoherence, computeStability, computeIcs10 } = require('neuropause-sdk');

// Compute coherence (CAR)
console.log(computeCoherence(25)); // 0.9241

// Compute stability (JDR%)
console.log(computeStability(80, 95)); // 0.8421

// Compute ICS-10 energetic signature
console.log(computeIcs10(10)); // 0.9999999958

Features

  • Coherence Analytics - Sigmoid-based coherence computation
  • Stability Engine - Force/balance ratio calculations
  • ICS-10 Signature - Hyperbolic tangent transformation
  • Privacy Utilities - Data anonymization functions

API Reference

computeCoherence(value)

Computes coherence score using sigmoid transformation.

  • value (number): Non-negative input value
  • Returns: Coherence score between 0 and 1

computeStability(force, balance)

Computes stability ratio.

  • force (number): Force value
  • balance (number): Balance value (must not be zero)
  • Returns: Stability ratio

computeIcs10(value)

Computes ICS-10 energetic signature.

  • value (number): Input value
  • Returns: Value between -1 and 1

anonymize(data)

Removes personal identifiable information from data object.

  • data (object): Data to anonymize
  • Returns: Anonymized copy

License

Proprietary - NeuroPause Labs

Keywords

neuropause

FAQs

Package last updated on 28 Nov 2025

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