@eddeee888/gcg-typescript-resolver-files
Version:
This [GraphQL Code Generator](https://www.the-guild.dev/graphql/codegen) plugin creates resolvers given GraphQL schema.
13 lines • 378 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.cwd = void 0;
const tslib_1 = require("tslib");
const path = tslib_1.__importStar(require("path"));
/**
* It is process.cwd() but normalised for all OS
*/
const cwd = () => {
return process.cwd().split(path.sep).join(path.posix.sep);
};
exports.cwd = cwd;
//# sourceMappingURL=cwd.js.map
;