2017 © Pedro Peláez
 

library strip-indent

A tiny library for stripping indents from multi-line scripts, inspired by: (sindresorhus/strip-indent)[https://github.com/sindresorhus/strip-indent]

image

aydin-hassan/strip-indent

A tiny library for stripping indents from multi-line scripts, inspired by: (sindresorhus/strip-indent)[https://github.com/sindresorhus/strip-indent]

  • Monday, October 13, 2014
  • by AydinHassan
  • Repository
  • 1 Watchers
  • 2 Stars
  • 13 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

StripIndent

Build Status Coverage Status Scrutinizer Code Quality Latest Stable Version, (*1)

A tiny library for stripping indents from multi-line scripts, inspired by: sindresorhus/strip-indent, (*2)

The indent amount is counted for the second row, (not the row containing the string declaration). This indent count is removed from each line., (*3)

Installation

Composer

composer require aydin-hassan/strip-indent

Usage

<?php
use function AydinHassan\stripIndent;

$multiLineString = '
    <VirtualHost>
        <one>
            <two>
            </two>
        </one>
    </VirtualHost>
    ';

echo stripIndent($line);

/**
<VirtualHost>
    <one>
        <two>
        </two>
    </one>
</VirtualHost>
**/

The Versions

13/10 2014

dev-master

9999999-dev

A tiny library for stripping indents from multi-line scripts, inspired by: (sindresorhus/strip-indent)[https://github.com/sindresorhus/strip-indent]

  Sources   Download

MIT

The Requires

  • php >=5.4

 

The Development Requires

13/10 2014

1.0.0

1.0.0.0

A tiny library for stripping indents from multi-line scripts, inspired by: (sindresorhus/strip-indent)[https://github.com/sindresorhus/strip-indent]

  Sources   Download

MIT

The Requires

  • php >=5.4

 

The Development Requires