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

@pushrocks/smartfeed

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@pushrocks/smartfeed - npm Package Compare versions

Comparing version 1.0.2 to 1.0.3

dist_ts/smartfeed.classes.feed.d.ts

5

dist_ts/index.d.ts

@@ -1,1 +0,4 @@

export declare let standardExport: string;
import { Feed, IFeedOptions } from './smartfeed.classes.feed';
export declare class Smartfeed {
createFeed(optionsArg: IFeedOptions): Feed;
}

13

dist_ts/index.js
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.standardExport = void 0;
exports.standardExport = 'Hi there! :) This is an exported string';
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi90cy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7QUFFVyxRQUFBLGNBQWMsR0FBRyx5Q0FBeUMsQ0FBQyJ9
exports.Smartfeed = void 0;
const smartfeed_classes_feed_1 = require("./smartfeed.classes.feed");
class Smartfeed {
createFeed(optionsArg) {
const feedVersion = new smartfeed_classes_feed_1.Feed(optionsArg);
return feedVersion;
}
}
exports.Smartfeed = Smartfeed;
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi90cy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7QUFBQSxxRUFBOEQ7QUFHOUQsTUFBYSxTQUFTO0lBQ2IsVUFBVSxDQUFDLFVBQXdCO1FBQ3hDLE1BQU0sV0FBVyxHQUFHLElBQUksNkJBQUksQ0FBQyxVQUFVLENBQUMsQ0FBQztRQUN6QyxPQUFPLFdBQVcsQ0FBQztJQUNyQixDQUFDO0NBQ0Y7QUFMRCw4QkFLQyJ9

@@ -1,2 +0,2 @@

declare const removeme: {};
export { removeme };
import * as feed from 'feed';
export { feed };
"use strict";
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
Object.defineProperty(o, "default", { enumerable: true, value: v });
}) : function(o, v) {
o["default"] = v;
});
var __importStar = (this && this.__importStar) || function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
__setModuleDefault(result, mod);
return result;
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.removeme = void 0;
const removeme = {};
exports.removeme = removeme;
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic21hcnRmZWVkLnBsdWdpbnMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi90cy9zbWFydGZlZWQucGx1Z2lucy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7QUFBQSxNQUFNLFFBQVEsR0FBRyxFQUFFLENBQUM7QUFDWCw0QkFBUSJ9
exports.feed = void 0;
// third party scope
const feed = __importStar(require("feed"));
exports.feed = feed;
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic21hcnRmZWVkLnBsdWdpbnMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi90cy9zbWFydGZlZWQucGx1Z2lucy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBQUEsb0JBQW9CO0FBQ3BCLDJDQUE2QjtBQUczQixvQkFBSSJ9
{
"name": "@pushrocks/smartfeed",
"version": "1.0.2",
"version": "1.0.3",
"private": false,

@@ -23,3 +23,5 @@ "description": "create and parse feeds",

},
"dependencies": {},
"dependencies": {
"feed": "^4.2.1"
},
"browserslist": [

@@ -26,0 +28,0 @@ "last 1 chrome versions"

@@ -0,3 +1,9 @@

import { Feed, IFeedOptions } from './smartfeed.classes.feed';
import * as plugins from './smartfeed.plugins';
export let standardExport = 'Hi there! :) This is an exported string';
export class Smartfeed {
public createFeed(optionsArg: IFeedOptions) {
const feedVersion = new Feed(optionsArg);
return feedVersion;
}
}

@@ -1,2 +0,6 @@

const removeme = {};
export { removeme };
// third party scope
import * as feed from 'feed';
export {
feed
};
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