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

@marblejs/core

Package Overview
Dependencies
Maintainers
2
Versions
132
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@marblejs/core - npm Package Compare versions

Comparing version 1.0.0 to 1.1.0-dev.8

dist/+internal/files/fileReader.helper.js

4

dist/+internal/fp/maybe.d.ts

@@ -10,4 +10,4 @@ import { Functor } from './functor';

private constructor();
private static some;
private static none;
static some: <T_1>(value: T_1) => Maybe<T_1>;
static none: <T_1>() => Maybe<T_1>;
static of: <T_1>(value: Nullable<T_1>) => Maybe<T_1>;

@@ -14,0 +14,0 @@ map: <R>(f: (value: T) => R) => Maybe<R>;

@@ -0,1 +1,5 @@

import { Maybe } from '../fp/maybe';
export declare const getArrayFromEnum: (E: Object) => string[];
export declare const getHead: <T>(array: T[]) => Maybe<T>;
export declare const filterArray: <T>(f: (v: T) => boolean) => (array: T[]) => T[];
export declare const mapArray: <T, R>(f: (v: T) => R) => (array: T[]) => R[];
import { Observable } from 'rxjs';
import { HttpRequest, HttpResponse } from '../http.interface';
export { HttpRequest, HttpResponse, Observable };
export declare const combineMiddlewareEffects: (effects: import("packages/core/src/effects/effects.interface").Effect<HttpRequest, any>[]) => import("packages/core/src/effects/effects.interface").Effect<HttpRequest, any>;
export declare const combineMiddlewareEffects: (effects: import("./effects.interface").Effect<HttpRequest, any>[]) => import("./effects.interface").Effect<HttpRequest, any>;

@@ -10,3 +10,1 @@ export { EffectFactory } from './effects/effects.factory';

export * from './operators';
import * as internal from './+internal';
export { internal };
import { HttpStatus } from '../http.interface';
import { ContentType } from '../+internal';
export declare const DEFAULT_CONTENT_TYPE: ContentType;
export declare const DEFAULT_CONTENT_TYPE = ContentType.APPLICATION_JSON;
export declare const getMimeType: (body: any, path: string) => string;

@@ -5,0 +4,0 @@ export declare const contentTypeFactory: (data: {

{
"name": "@marblejs/core",
"version": "1.0.0",
"version": "1.1.0-dev.8+ce4357f",
"description": "Reactive Node APIs made easy",

@@ -9,7 +9,8 @@ "main": "./dist/index.js",

"start": "yarn watch",
"watch": "webpack -w",
"build": "webpack",
"prepare": "yarn build",
"watch": "tsc -w",
"build": "tsc",
"clean": "rimraf dist",
"prepack": "cp ../../README.md ./ && yarn build"
"lint": "tslint --config ../../tslint.json --project ./",
"test": "jest --config ../../jest.config.js",
"prepack": "cp ../../README.md ./"
},

@@ -45,4 +46,3 @@ "files": [

"@types/mime": "^2.0.0",
"@types/path-to-regexp": "^1.7.0",
"webpack": "^4.17.2"
"@types/path-to-regexp": "^1.7.0"
},

@@ -52,3 +52,3 @@ "publishConfig": {

},
"gitHead": "5b6628458c9abaf3ae2abf5af7d42e784290389c"
"gitHead": "ce4357ff67fd1f2d5c355a9fadbbadb3a5c6842e"
}

@@ -44,6 +44,2 @@ <p align="center">

## <a name="roadmap"></a> Roadmap
**Marble.js** is not yet a final and production ready product. Its APIs can improve over time when reaching stable version `1.0.0`. But in the meantime you can play easily and contribute to the growing community of functional reactive programming freaks.
## Contributing

@@ -50,0 +46,0 @@

Sorry, the diff of this file is too big to display

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