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

x/script_nop/src/FactBaseElement.ts>default#notify

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

Notifies Attributes in depth.

Parameters

input: any

the data value, eg { a: { foo: "bar" } }.

optional
mode:
| "IGNORE_MISSING"
| "REPLACE"
| "REPLACE_AND_IGNORE_MISSING"
| ""
= [UNSUPPORTED]

optional, if mode="IGNORE_MISSING", attributes missing in "input" will not be considered as excluded. if mode="REPLACE", there will be a total replacement of the attributes in "set", if mode="REPLACE_AND_IGNORE_MISSING" will do both.