UNPKG
@ivanwei/tui-time-picker
Version:
latest (0.0.1)
0.0.1
TOAST UI Components: TimePicker
github.com/nhnent/tui.time-picker
nhnent/tui.time-picker
@ivanwei/tui-time-picker
/
src
/
template
/
helpers
/
equals.js
16 lines
(13 loc)
•
275 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/** *
@fileoverview
Handlebars helper - Equals *
@author
NHN Ent. FE Development Lab <dl_javascript
@nhnent
.com> */
'use strict'
;
/** *
@param
{
*
}
a
- Anything *
@param
{
*
}
b
- Anything *
@returns
{
boolean
} */
module
.
exports
=
function
(
a, b
) {
return
a === b; };