mirror of
https://gh.wpcy.net/https://github.com/djav1985/v-wordpress-plugin-updater.git
synced 2026-04-25 04:12:14 +08:00
11 lines
298 B
JavaScript
11 lines
298 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.isEmpty = exports.isString = void 0;
|
|
function isString(input) {
|
|
return typeof input === 'string';
|
|
}
|
|
exports.isString = isString;
|
|
function isEmpty(input) {
|
|
return input === '';
|
|
}
|
|
exports.isEmpty = isEmpty;
|