15 lines
254 B
Python
15 lines
254 B
Python
#!/usr/bin/python
|
|
# -*- coding: utf-8 -*-
|
|
# vi:si:et:sw=4:sts=4:ts=4
|
|
from __future__ import with_statement
|
|
|
|
from js import minify
|
|
from utils import json
|
|
|
|
|
|
def load(f):
|
|
return loads(f.read())
|
|
|
|
def loads(source):
|
|
return json.loads(minify(source))
|
|
|