This commit is contained in:
syuilo 2017-02-18 16:52:14 +09:00
parent b4046da451
commit f6f1eb1bca
3 changed files with 7 additions and 7 deletions

View File

@ -12,23 +12,23 @@ module.exports = (me) ~>
Cropper: require \cropperjs
riot.mixin \signout do
signout: require './scripts/signout.js'
signout: require './scripts/signout'
riot.mixin \messaging-stream do
MessagingStreamConnection: require './scripts/messaging-stream'
riot.mixin \is-promise do
is-promise: require './scripts/is-promise.ls'
is-promise: require './scripts/is-promise'
riot.mixin \get-post-summary do
get-post-summary: require './scripts/get-post-summary.js'
get-post-summary: require './scripts/get-post-summary'
riot.mixin \date-stringify do
date-stringify: require './scripts/date-stringify.ls'
date-stringify: require './scripts/date-stringify'
riot.mixin \text do
analyze: require '../../../common/text/index.js'
compile: require './scripts/text-compiler.js'
analyze: require '../../../common/text/index'
compile: require './scripts/text-compiler'
riot.mixin \get-password-strength do
get-password-strength: require 'syuilo-password-strength'

View File

@ -0,0 +1 @@
module.exports = x => typeof x.then == 'function';

View File

@ -1 +0,0 @@
module.exports = (x) -> typeof x.then == \function