UNPKG

@nx/rsbuild

Version:

The Nx Plugin for Rsbuild contains an Nx plugin, executors and utilities that support building applications using Rsbuild.

13 lines (12 loc) 341 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.indentBy = indentBy; function indentBy(tabNumber) { return (str) => { const indentation = '\t'.repeat(tabNumber); return str .split('\n') .map((line) => `${indentation}${line}`) .join('\n'); }; }