Latest updates from IceHrmPro
This commit is contained in:
10
web/node_modules/moment/src/lib/utils/defaults.js
generated
vendored
Normal file
10
web/node_modules/moment/src/lib/utils/defaults.js
generated
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
// Pick the first defined of two or three arguments.
|
||||
export default function defaults(a, b, c) {
|
||||
if (a != null) {
|
||||
return a;
|
||||
}
|
||||
if (b != null) {
|
||||
return b;
|
||||
}
|
||||
return c;
|
||||
}
|
||||
Reference in New Issue
Block a user