File Manager

Path: /home/heznutpr/log.heznutprivate.com/dashboard/bower_components/moment/src/lib/utils/

Viewing File: defaults.js

// 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;
}