mirror of
https://github.com/sern-handler/website
synced 2026-06-27 10:12:23 +00:00
feat: migrate to starlight
This commit is contained in:
3
node_modules/not/.npmignore
generated
vendored
Normal file
3
node_modules/not/.npmignore
generated
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
node_modules
|
||||
*.log
|
||||
*.err
|
||||
19
node_modules/not/LICENCE
generated
vendored
Normal file
19
node_modules/not/LICENCE
generated
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
Copyright (c) 2012 Raynos.
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
||||
24
node_modules/not/README.md
generated
vendored
Normal file
24
node_modules/not/README.md
generated
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
# not
|
||||
|
||||
Returns the negation of a function
|
||||
|
||||
## Example
|
||||
|
||||
```
|
||||
var not = require("not")
|
||||
, truth = function () { return true }
|
||||
, lies = function () { return false }
|
||||
|
||||
// false true
|
||||
console.log(not(truth)(), not(lies)())
|
||||
```
|
||||
|
||||
## Installation
|
||||
|
||||
`npm install not`
|
||||
|
||||
## Contributors
|
||||
|
||||
- Raynos
|
||||
|
||||
## MIT Licenced
|
||||
6
node_modules/not/examples/simple.js
generated
vendored
Normal file
6
node_modules/not/examples/simple.js
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
var not = require("..")
|
||||
, truth = function () { return true }
|
||||
, lies = function () { return false }
|
||||
|
||||
// false true
|
||||
console.log(not(truth)(), not(lies)())
|
||||
9
node_modules/not/index.js
generated
vendored
Normal file
9
node_modules/not/index.js
generated
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
module.exports = not
|
||||
|
||||
function not(f) {
|
||||
return negation
|
||||
|
||||
function negation() {
|
||||
return !f.apply(this, arguments)
|
||||
}
|
||||
}
|
||||
33
node_modules/not/package.json
generated
vendored
Normal file
33
node_modules/not/package.json
generated
vendored
Normal file
@@ -0,0 +1,33 @@
|
||||
{
|
||||
"name": "not",
|
||||
"version": "0.1.0",
|
||||
"description": "Returns the negation of a function",
|
||||
"keywords": [],
|
||||
"author": "Raynos <raynos2@gmail.com>",
|
||||
"repository": "git://github.com/Raynos/not.git",
|
||||
"main": "index",
|
||||
"homepage": "https://github.com/Raynos/not",
|
||||
"contributors": [
|
||||
{
|
||||
"name": "Jake Verbaten"
|
||||
}
|
||||
],
|
||||
"bugs": {
|
||||
"url": "https://github.com/Raynos/not/issues",
|
||||
"email": "raynos2@gmail.com"
|
||||
},
|
||||
"dependencies": {
|
||||
},
|
||||
"devDependencies": {
|
||||
"tap": "~0.3.1"
|
||||
},
|
||||
"licenses": [
|
||||
{
|
||||
"type": "MIT",
|
||||
"url": "http://github.com/Raynos/not/raw/master/LICENSE"
|
||||
}
|
||||
],
|
||||
"scripts": {
|
||||
"test": "tap --stderr --tap ./test"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user