Compare commits

..

6 Commits

Author SHA1 Message Date
ae560cd00a updated year
Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
2023-09-09 16:39:03 +03:00
541f4bfe82 added .editorconfig
Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
2023-06-12 12:47:28 +03:00
9be9caefc9 updated license...
Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
2019-11-03 19:28:07 +03:00
3572df122e 1.0.6 2014-12-31 19:23:50 +03:00
bf9674d063 added a link to the used in an example glob utility...
Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
2014-12-31 19:23:36 +03:00
7b16dc493f minor licence update in package.json...
Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
2014-12-30 00:07:22 +03:00
5 changed files with 12 additions and 4 deletions

7
.editorconfig Executable file
View File

@ -0,0 +1,7 @@
root = true
[**]
indent_style = tab
tab_width = 4
charset = utf-8
end_of_line = lf

2
LICENSE Normal file → Executable file
View File

@ -1,4 +1,4 @@
Copyright (c) 2014, Alex A. Naanou
Copyright (c) 2014-2023, Alex A. Naanou
All rights reserved.
Redistribution and use in source and binary forms, with or without

3
README.md Normal file → Executable file
View File

@ -58,7 +58,8 @@ emitter.emit('event', 'some data')
```
A real-life use-case:
A real-life use-case using the excellent [glob](https://github.com/isaacs/node-glob)
utility:
```javascript
var glob = require('glob')
var guaranteeEvents = require('guarantee-events')

0
index.js Normal file → Executable file
View File

View File

@ -1,6 +1,6 @@
{
"name": "guarantee-events",
"version": "1.0.5",
"version": "1.0.6",
"description": "Guarantee that every event handler gets every event...",
"main": "index.js",
"scripts": {
@ -18,7 +18,7 @@
"event"
],
"author": "Alex A. Naanou <alex.nanou@gmail.com> (https://github.com/flynx)",
"license": "New BSD",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/flynx/guaranteeEvents/issues"
},