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

@azure-tools/linq

Package Overview
Dependencies
Maintainers
1
Versions
73
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@azure-tools/linq - npm Package Compare versions

Comparing version 3.1.211 to 3.1.212

2

dist/visitor.d.ts

@@ -11,3 +11,5 @@ interface AnyObject {

export declare function visitor(instance: AnyObject): Iterable<Leaf>;
export declare function refCount(instance: AnyObject, target: AnyObject): number;
export declare function references(instance: AnyObject, target: AnyObject): Iterable<AnyObject>;
export {};
//# sourceMappingURL=visitor.d.ts.map

@@ -56,2 +56,20 @@ "use strict";

exports.visitor = visitor;
function refCount(instance, target) {
let count = 0;
for (const each of visitor(instance)) {
if (target === instance.instance) {
count++;
}
}
return count;
}
exports.refCount = refCount;
function* references(instance, target) {
for (const each of visitor(instance)) {
if (each === instance.instance) {
yield instance;
}
}
}
exports.references = references;
//# sourceMappingURL=visitor.js.map

2

package.json
{
"name": "@azure-tools/linq",
"version": "3.1.211",
"version": "3.1.212",
"patchOffset": 100,

@@ -5,0 +5,0 @@ "description": "LINQ-like functionality for Typescript.",

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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