This website requires JavaScript.
Explore
Help
Sign In
tod
/
odin-default-js-exercises
Watch
1
Star
0
Fork
You've already forked odin-default-js-exercises
0
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
26ac56f75d
odin-default-js-exercises
/
tempConversion
/
tempConversion.js
13 lines
99 B
JavaScript
Raw
Normal View
History
Unescape
Escape
Transform 'let' in 'const' where needs be
2018-08-07 10:23:28 +00:00
const
ftoc
=
function
(
)
{
added trailing semicolon to all function and module exports
2021-05-10 09:27:55 +00:00
}
;
add tempConversion
2017-08-25 15:27:07 +00:00
Transform 'let' in 'const' where needs be
2018-08-07 10:23:28 +00:00
const
ctof
=
function
(
)
{
added trailing semicolon to all function and module exports
2021-05-10 09:27:55 +00:00
}
;
add tempConversion
2017-08-25 15:27:07 +00:00
module
.
exports
=
{
ftoc
,
ctof
Add missing semicolon.
2021-05-11 02:29:44 +00:00
}
;