UNPKG

wsdl-tsclient

Version:

Generate typescript soap client with typescript definitons from WSDL file.

10 lines 291 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.stripExtension = stripExtension; /** * @example "weather.wsdl" -> "weather" */ function stripExtension(filename) { return filename.split(".").slice(0, -1).join("."); } //# sourceMappingURL=file.js.map