Fully renamed and updated everything, tagged, built

This commit is contained in:
Angelos Chalaris
2017-12-17 17:55:51 +02:00
parent c209d9e972
commit 9db5e43e66
108 changed files with 1317 additions and 914 deletions

10
snippets/functionName.md Normal file
View File

@ -0,0 +1,10 @@
### functionName
Logs the name of a function.
Use `console.debug()` and the `name` property of the passed method to log the method's name to the `debug` channel of the console.
```js
const functionName = fn => (console.debug(fn.name), fn);
// functionName(Math.max) -> max (logged in debug channel of console)
```