This website works better with JavaScript.
ホーム
エクスプローラ
ヘルプ
サインイン
CCOM4030
/
artesanias
ウォッチ
5
お気に入りに登録
0
フォーク
0
コード
課題
0
プルリクエスト
0
リリース
0
Wiki
アクティビティ
Repositorio del curso CCOM4030 el semestre B91 del proyecto Artesanías con el Instituto de Cultura
70
コミット
9
ブランチ
ツリー:
30e315acc3
artesanias
/
node_modules
/
es-abstract
/
helpers
/
sign.js
sign.js
89B
履歴
Raw形式
1
2
3
4
5
'use strict'
;
module
.exports =
function
sign
(
number
)
{
return
number >=
0
?
1
:
-1
;
};