projects
/
tech-radar.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
fixed fib sum, it was doing the sum for lenght + 1
[tech-radar.git]
/
src
/
models
/
cycle.js
1
tr
.
models
.
Cycle
=
function
(
name
,
order
) {
2
var
self
= {};
3
4
self
.
name
=
function
() {
5
return
name
;
6
};
7
8
self
.
order
=
function
() {
9
return
order
;
10
};
11
12
return
self
;
13
};