#!/usr/bin/env python
import sys, os

...

Python filter by indentation level

by hayalci, September 20, 2009 12:47, 3 refactorings, tagged with filter, indent, shorten

I wrote this to filter outp...

3218c3a378d57a5af5175c4c29dbbf87 Talk
indent = function(string, indents) {
  indents = (new Array(indents)).join('  ')
  return string.replace(/^/gm, function(){ return indents })
...

JavaScript indent string

by Tj Holowaychuk, April 24, 2009 16:06, 4 refactorings, tagged with indent

Cleaner way?

F1e3ab214a976a39cfd713bc93deb10f Talk