Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

quantified-self-lib

Package Overview
Dependencies
Maintainers
1
Versions
134
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

quantified-self-lib - npm Package Compare versions

Comparing version 3.3.12 to 3.3.13

2

lib/data/data.feeling.js

@@ -23,3 +23,3 @@ "use strict";

DataFeeling.prototype.getDisplayValue = function () {
return Feelings[this.value];
return Feelings[Math.ceil(this.getValue())] ? Feelings[Math.ceil(this.getValue())] : "Other " + this.getValue();
};

@@ -26,0 +26,0 @@ DataFeeling.type = 'Feeling';

import { DataNumber } from './data.number';
export declare class DataRPE extends DataNumber {
static type: string;
getDisplayValue(): number | string | string[];
}

@@ -5,0 +6,0 @@ export declare enum RPEBorgCR10SCale {

@@ -22,2 +22,5 @@ "use strict";

}
DataRPE.prototype.getDisplayValue = function () {
return RPEBorgCR10SCale[Math.ceil(this.getValue())] ? RPEBorgCR10SCale[Math.ceil(this.getValue())] : "Other " + this.getValue();
};
DataRPE.type = 'Rated Perceived Exertion';

@@ -24,0 +27,0 @@ return DataRPE;

{
"name": "quantified-self-lib",
"version": "3.3.12",
"version": "3.3.13",
"description": "A Library to for processing GPX, TCX, FIT and JSON files from services such as Strava, Movescount, Garmin, Polar etc",

@@ -5,0 +5,0 @@ "keywords": [

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