# I am the Watcher. I am your guide through this vast new twtiverse.
#
# Usage:
# https://watcher.sour.is/api/plain/users View list of users and latest twt date.
# https://watcher.sour.is/api/plain/twt View all twts.
# https://watcher.sour.is/api/plain/mentions?uri=:uri View all mentions for uri.
# https://watcher.sour.is/api/plain/conv/:hash View all twts for a conversation subject.
#
# Options:
# uri Filter to show a specific users twts.
# offset Start index for quey.
# limit Count of items to return (going back in time).
#
# twt range = 1 1
# self = https://watcher.sour.is/conv/vmw3tqa
箭頭函數的意義和函數的二義性**
前言--說到箭頭函數,可能很多人的第一反應就是和普通函數的區別:箭頭函數沒有 this,普通函數的 this 指向依賴它是如何被調用的 箭頭函數沒有 arguments 對象,而是通過剩餘參數(rest parameters)來獲取所有參數的值 箭頭函數沒有 prototype 原型,不能用作構造函數,而普通函數可以 更加簡潔的函數語法 相信一名前端開發者,對於這兩者的區別 ⌘ Read more