mirror of
https://github.com/Expand-sys/ccashfrontend
synced 2025-12-19 16:12:14 +11:00
12 lines
203 B
JavaScript
12 lines
203 B
JavaScript
'use strict';
|
|
|
|
const castBoolean = require('../../cast/boolean');
|
|
|
|
/*!
|
|
* ignore
|
|
*/
|
|
|
|
module.exports = function(val) {
|
|
const path = this != null ? this.path : null;
|
|
return castBoolean(val, path);
|
|
};
|