Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/script_nop/mod.ts>FactBaseElement#notify

A framework for notification-oriented programming paradigm (NOP) implemented in TypeScript.
Go to Latest
method FactBaseElement.prototype.notify
Re-export
import { FactBaseElement } from "https://deno.land/x/script_nop@v2.0.7/mod.ts";

Notifies Attributes in depth.

Parameters

optional
path: string = [UNSUPPORTED]

input path, such as "a", "a.b" or "a.c.0.d" (wit array).

input: { [key: string]: any; } | any[]

optional, if mode includes "IGNORE_MISSING", Attributes missing in "input" (in depth) will not be considered as excluded. if mode includes "FORCE" Notifications will be forced to Attributes even if the values of these Attributes are not modified, given the Attributes that are contained in the input.

optional
mode:
| "IGNORE_MISSING"
| "FORCE"
| "IGNORE_MISSING_AND_FORCE"
| ""
= [UNSUPPORTED]